radicle: Update `sqlite` to 0.37
The `concat` function is not present in version 0.32 of `sqlite`, since it was introduced in 3.44[^0]. Update the `sqlite` to version 0.37, which brings in 3.45[^1], via `sqlite3_sys`. [^0]: https://sqlite.org/forum/forumpost/c14028be1b9c0e20de9e39d70706adc9f5a36bb5ccaad6db22f7d99633eafff8 [^1]: https://docs.rs/sqlite3-sys/0.18.0/sqlite3_sys/constant.SQLITE_VERSION.html
This commit is contained in:
parent
0736977170
commit
a1fd9e04fe
|
|
@ -3921,19 +3921,18 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlite"
|
name = "sqlite"
|
||||||
version = "0.32.0"
|
version = "0.37.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "03801c10193857d6a4a71ec46cee198a15cbc659622aabe1db0d0bdbefbcf8e6"
|
checksum = "f66e9c01a11936154f3910dbba732c01f8b591543bc4d6672bddee79fd9c4783"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
|
||||||
"sqlite3-sys",
|
"sqlite3-sys",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlite3-src"
|
name = "sqlite3-src"
|
||||||
version = "0.5.1"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "bfc95a51a1ee38839599371685b9d4a926abb51791f0bc3bf8c3bb7867e6e454"
|
checksum = "e5b6d3c860886b0a33e69e421796a5f4a27f23597a182c2450f6d7ace5103120"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
|
|
@ -3941,11 +3940,10 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "sqlite3-sys"
|
name = "sqlite3-sys"
|
||||||
version = "0.15.2"
|
version = "0.18.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f2752c669433e40ebb08fde824146f50d9628aa0b66a3b7fc6be34db82a8063b"
|
checksum = "a7781d97adc13a1d5081127a9ee29afad8427f3757bd984daf814d8265267039"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
|
||||||
"sqlite3-src",
|
"sqlite3-src",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@ serde_json = "1.0"
|
||||||
shlex = "1.1.0"
|
shlex = "1.1.0"
|
||||||
signature = "2.2"
|
signature = "2.2"
|
||||||
snapbox = "0.4.3"
|
snapbox = "0.4.3"
|
||||||
sqlite = "0.32.0"
|
sqlite = "0.37.0"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
thiserror = { version = "2", default-features = false }
|
thiserror = { version = "2", default-features = false }
|
||||||
uds_windows = "1.1.0"
|
uds_windows = "1.1.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue