main
Ziyang Hu 2 years ago
parent cad908edbc
commit 4dc26a8e5a

3
Cargo.lock generated

@ -1048,8 +1048,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"js-sys",
"libc", "libc",
"wasi 0.11.0+wasi-snapshot-preview1", "wasi 0.11.0+wasi-snapshot-preview1",
"wasm-bindgen",
] ]
[[package]] [[package]]
@ -3286,6 +3288,7 @@ dependencies = [
"atomic", "atomic",
"getrandom 0.2.8", "getrandom 0.2.8",
"serde", "serde",
"wasm-bindgen",
] ]
[[package]] [[package]]

@ -35,6 +35,8 @@ requests = ["dep:minreq"]
jemalloc = ["dep:tikv-jemallocator-global", "cozorocks?/jemalloc"] jemalloc = ["dep:tikv-jemallocator-global", "cozorocks?/jemalloc"]
## Enables io-uring option for the RocksDB storage ## Enables io-uring option for the RocksDB storage
io-uring = ["cozorocks?/io-uring"] io-uring = ["cozorocks?/io-uring"]
## Enables the WASM target
wasm = ["uuid/js"]
#! The following features are highly experimental: #! The following features are highly experimental:

Loading…
Cancel
Save