chore: bump surrealkv version 0.3.1 (#4467)
Co-authored-by: Gerard Guillemas Martos <gguillemas@users.noreply.github.com>
This commit is contained in:
parent
e60ce36083
commit
e13c277f9d
4 changed files with 24 additions and 49 deletions
55
Cargo.lock
generated
55
Cargo.lock
generated
|
@ -1457,28 +1457,6 @@ version = "1.1.2"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216"
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam"
|
||||
version = "0.8.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
|
||||
dependencies = [
|
||||
"crossbeam-channel",
|
||||
"crossbeam-deque",
|
||||
"crossbeam-epoch",
|
||||
"crossbeam-queue",
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-channel"
|
||||
version = "0.5.12"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
|
||||
dependencies = [
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-deque"
|
||||
version = "0.8.5"
|
||||
|
@ -1498,15 +1476,6 @@ dependencies = [
|
|||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-queue"
|
||||
version = "0.3.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
|
||||
dependencies = [
|
||||
"crossbeam-utils",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crossbeam-utils"
|
||||
version = "0.8.19"
|
||||
|
@ -4345,6 +4314,18 @@ dependencies = [
|
|||
"parking_lot",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quick_cache"
|
||||
version = "0.6.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ec932c60e6faf77dc6601ea149a23d821598b019b450bb1d98fe89c0301c0b61"
|
||||
dependencies = [
|
||||
"ahash 0.8.11",
|
||||
"equivalent",
|
||||
"hashbrown 0.14.5",
|
||||
"parking_lot",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quinn"
|
||||
version = "0.11.2"
|
||||
|
@ -5954,7 +5935,7 @@ dependencies = [
|
|||
"phf",
|
||||
"pin-project-lite",
|
||||
"pprof",
|
||||
"quick_cache",
|
||||
"quick_cache 0.5.1",
|
||||
"radix_trie",
|
||||
"rand 0.8.5",
|
||||
"reblessive",
|
||||
|
@ -6043,21 +6024,19 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "surrealkv"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "cd7369cca0403d3c07aba318cedb69dfb787eafda44c7b0c54f05b1fd0438bfe"
|
||||
checksum = "85cbebbb653d3a28eb67d371a1f2d09954e09834ef51cd6bab79d7958c95ca81"
|
||||
dependencies = [
|
||||
"ahash 0.8.11",
|
||||
"async-channel 2.2.0",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"crc32fast",
|
||||
"crossbeam",
|
||||
"crossbeam-channel",
|
||||
"futures",
|
||||
"hashbrown 0.14.5",
|
||||
"lru",
|
||||
"parking_lot",
|
||||
"quick_cache",
|
||||
"quick_cache 0.6.2",
|
||||
"revision 0.7.1",
|
||||
"sha2",
|
||||
"tokio",
|
||||
|
|
|
@ -135,7 +135,7 @@ sha1 = "0.10.6"
|
|||
sha2 = "0.10.8"
|
||||
snap = "1.1.0"
|
||||
storekey = "0.5.0"
|
||||
surrealkv = { version = "0.3.0", optional = true }
|
||||
surrealkv = { version = "0.3.1", optional = true }
|
||||
surrealml = { version = "0.1.1", optional = true, package = "surrealml-core" }
|
||||
tempfile = { version = "3.10.1", optional = true }
|
||||
thiserror = "1.0.50"
|
||||
|
|
|
@ -447,10 +447,6 @@ criteria = "safe-to-deploy"
|
|||
version = "1.1.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.crossbeam]]
|
||||
version = "0.8.4"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.crossbeam-channel]]
|
||||
version = "0.5.11"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -463,10 +459,6 @@ criteria = "safe-to-deploy"
|
|||
version = "0.9.18"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.crossbeam-queue]]
|
||||
version = "0.3.11"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.crossbeam-utils]]
|
||||
version = "0.8.19"
|
||||
criteria = "safe-to-deploy"
|
||||
|
@ -1219,6 +1211,10 @@ criteria = "safe-to-deploy"
|
|||
version = "0.26.0"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.quick_cache]]
|
||||
version = "0.6.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
||||
[[exemptions.quinn]]
|
||||
version = "0.11.2"
|
||||
criteria = "safe-to-deploy"
|
||||
|
|
|
@ -276,8 +276,8 @@ user-login = "mumoshu"
|
|||
user-name = "Yusuke Kuoka"
|
||||
|
||||
[[publisher.surrealkv]]
|
||||
version = "0.3.0"
|
||||
when = "2024-07-04"
|
||||
version = "0.3.1"
|
||||
when = "2024-08-05"
|
||||
user-id = 145457
|
||||
user-login = "tobiemh"
|
||||
user-name = "Tobie Morgan Hitchcock"
|
||||
|
|
Loading…
Reference in a new issue