@@ -28,12 +28,10 @@ exclude = ["wasm-test"]
2828resolver = " 2"
2929
3030[workspace .package ]
31- version = " 0.25.2"
32- homepage = " https://github.com/spiraldb/vortex"
33- repository = " https://github.com/spiraldb/vortex"
3431authors = [
" Vortex Authors <[email protected] >" ]
35- license = " Apache-2.0"
36- keywords = [" vortex" ]
32+ categories = [" database-implementations" , " data-structures" , " compression" ]
33+ edition = " 2024"
34+ homepage = " https://github.com/spiraldb/vortex"
3735include = [
3836 " benches/*.rs" ,
3937 " build.rs" ,
@@ -43,10 +41,12 @@ include = [
4341 " flatbuffers/**/*.fbs" ,
4442 " README.md" ,
4543]
46- edition = " 2024 "
47- rust-version = " 1.86 "
44+ keywords = [ " vortex " ]
45+ license = " Apache-2.0 "
4846readme = " README.md"
49- categories = [" database-implementations" , " data-structures" , " compression" ]
47+ repository = " https://github.com/spiraldb/vortex"
48+ rust-version = " 1.86"
49+ version = " 0.25.2"
5050
5151[workspace .dependencies ]
5252anyhow = " 1.0.95"
@@ -92,6 +92,7 @@ futures-executor = "0.3.31"
9292futures-util = " 0.3.31"
9393getrandom = " 0.3"
9494goldenfile = " 1"
95+ governor = " 0.8"
9596half = { version = " 2.2.1" , features = [" std" , " num-traits" ] }
9697hashbrown = " 0.15.1"
9798homedir = " 0.3.3"
@@ -103,7 +104,6 @@ libfuzzer-sys = "0.4"
103104log = { version = " 0.4.21" }
104105mimalloc = " 0.1.42"
105106moka = { version = " 0.12.10" , default-features = false }
106- governor = " 0.8"
107107num-traits = " 0.2.19"
108108num_enum = " 0.7.2"
109109object_store = " 0.11.0"
@@ -150,8 +150,8 @@ static_assertions = "1.1"
150150tabled = { version = " 0.18.0" , default-features = false }
151151tar = " 0.4"
152152tempfile = " 3"
153- tikv-jemallocator = " 0.6"
154153thiserror = " 2.0.3"
154+ tikv-jemallocator = " 0.6"
155155tokio = " 1.36"
156156tracing = { version = " 0.1.41" }
157157tracing-chrome = " 0.7.2"
@@ -196,14 +196,14 @@ xshell = "0.2.6"
196196zigzag = " 0.1.0"
197197
198198[workspace .dependencies .getrandom_v03 ]
199+ features = [" wasm_js" ]
199200package = " getrandom"
200201version = " 0.3.1"
201- features = [" wasm_js" ]
202202
203203[workspace .dependencies .getrandom_v02 ]
204+ features = [" js" ]
204205package = " getrandom"
205206version = " 0.2.15"
206- features = [" js" ]
207207
208208[workspace .lints .rust ]
209209macro_use_extern_crate = " deny"
@@ -219,15 +219,15 @@ as_ptr_cast_mut = "deny"
219219borrow_as_ptr = " deny"
220220cargo = { level = " deny" , priority = -1 }
221221cast_possible_truncation = " deny"
222- collection_is_never_read = " deny"
223222cognitive_complexity = " deny"
223+ collection_is_never_read = " deny"
224224dbg_macro = " deny"
225225debug_assert_with_mut_call = " deny"
226226derive_partial_eq_without_eq = " deny"
227+ equatable_if_let = " deny"
227228exit = " deny"
228229expect_fun_call = " deny"
229230expect_used = " deny"
230- equatable_if_let = " deny"
231231fallible_impl_from = " deny"
232232get_unwrap = " deny"
233233host_endian_bytes = " deny"
@@ -255,14 +255,14 @@ codegen-units = 1
255255lto = " thin" # attempts to perform optimizations across all crates within the dependency graph
256256
257257[profile .release_debug ]
258- inherits = " release"
259258debug = " full"
259+ inherits = " release"
260260
261261[profile .bench ]
262262codegen-units = 16
263263debug = " full"
264264lto = false
265265
266266[profile .bench_assert ]
267- inherits = " bench"
268267debug-assertions = true
268+ inherits = " bench"
0 commit comments