Re-export bundled feature of rusqlite
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 2m15s
Cargo CI / Lint (pull_request) Successful in 1m10s

This commit is contained in:
Wojciech Kozlowski 2025-01-12 10:20:34 +01:00
parent 0695740666
commit b6b25f7198
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@ -844,6 +844,7 @@ version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149" checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
dependencies = [ dependencies = [
"cc",
"pkg-config", "pkg-config",
"vcpkg", "vcpkg",
] ]

View File

@ -34,6 +34,7 @@ tempfile = "3.15.0"
default = ["database-json", "library-beets"] default = ["database-json", "library-beets"]
bin = ["structopt"] bin = ["structopt"]
database-sqlite = ["rusqlite", "serde", "serde_json"] database-sqlite = ["rusqlite", "serde", "serde_json"]
database-sqlite-bundled = ["rusqlite/bundled"]
database-json = ["serde", "serde_json"] database-json = ["serde", "serde_json"]
library-beets = [] library-beets = []
library-beets-ssh = ["openssh", "tokio"] library-beets-ssh = ["openssh", "tokio"]