diff --git a/Cargo.lock b/Cargo.lock index 1c29664..1f48057 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -223,15 +223,6 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -[[package]] -name = "home" -version = "0.5.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" -dependencies = [ - "windows-sys 0.61.2", -] - [[package]] name = "id-arena" version = "2.3.0" @@ -286,12 +277,6 @@ dependencies = [ "libc", ] -[[package]] -name = "linux-raw-sys" -version = "0.4.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" - [[package]] name = "linux-raw-sys" version = "0.12.1" @@ -580,19 +565,6 @@ dependencies = [ "thiserror", ] -[[package]] -name = "rustix" -version = "0.38.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" -dependencies = [ - "bitflags", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", -] - [[package]] name = "rustix" version = "1.1.4" @@ -602,7 +574,7 @@ dependencies = [ "bitflags", "errno", "libc", - "linux-raw-sys 0.12.1", + "linux-raw-sys", "windows-sys 0.61.2", ] @@ -745,7 +717,7 @@ dependencies = [ "fastrand", "getrandom 0.4.2", "once_cell", - "rustix 1.1.4", + "rustix", "windows-sys 0.61.2", ] @@ -976,14 +948,11 @@ dependencies = [ [[package]] name = "which" -version = "4.4.2" +version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" +checksum = "81995fafaaaf6ae47a7d0cc83c67caf92aeb7e5331650ae6ff856f7c0c60c459" dependencies = [ - "either", - "home", - "once_cell", - "rustix 0.38.44", + "libc", ] [[package]] @@ -1042,15 +1011,6 @@ dependencies = [ "windows-targets 0.48.5", ] -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - [[package]] name = "windows-sys" version = "0.61.2" diff --git a/crates/vectorprime-export/Cargo.toml b/crates/vectorprime-export/Cargo.toml index f370497..aa856d5 100644 --- a/crates/vectorprime-export/Cargo.toml +++ b/crates/vectorprime-export/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" vectorprime-core = { path = "../vectorprime-core" } anyhow = "1" serde_json = "1" -which = "4" +which = "8" [dev-dependencies] tempfile = "3" diff --git a/crates/vectorprime-runtime/Cargo.toml b/crates/vectorprime-runtime/Cargo.toml index 5fed02f..45170f8 100644 --- a/crates/vectorprime-runtime/Cargo.toml +++ b/crates/vectorprime-runtime/Cargo.toml @@ -8,7 +8,7 @@ vectorprime-core = { path = "../vectorprime-core" } anyhow = "1" thiserror = "1" tokio = { version = "1", features = ["full"] } -which = "4" +which = "8" serde = { version = "1", features = ["derive"] } serde_json = "1"