From 3b90fc095cfc508e01c2e5e1fa50685600a6f2b4 Mon Sep 17 00:00:00 2001 From: sokorototo Date: Fri, 5 Jan 2024 13:34:59 +0300 Subject: [PATCH] updated pacakges a bit --- Cargo.lock | 22 ++++++++++++++++++++-- vach-cli/Cargo.toml | 8 ++------ 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cafe50f8..9c123316 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1288,12 +1288,30 @@ dependencies = [ "tikv-jemallocator", ] +[[package]] +name = "vach" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "168270a93d41d4e50d45dd0aaace68be405b2f3cc02fd442d0ec86f313706b20" +dependencies = [ + "aes-gcm", + "brotli", + "ed25519-dalek", + "lz4_flex", + "parking_lot", + "rand", + "rayon", + "snap", + "thiserror", + "tikv-jemallocator", +] + [[package]] name = "vach-benchmarks" version = "0.1.0" dependencies = [ "criterion", - "vach", + "vach 0.5.2", ] [[package]] @@ -1307,7 +1325,7 @@ dependencies = [ "pretty_env_logger", "tabled", "term_size", - "vach", + "vach 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "walkdir", ] diff --git a/vach-cli/Cargo.toml b/vach-cli/Cargo.toml index 54690d4d..3f0d88a5 100644 --- a/vach-cli/Cargo.toml +++ b/vach-cli/Cargo.toml @@ -19,16 +19,12 @@ name = "vach" path = "src/main.rs" [dependencies] -indicatif = "0.17.6" +vach = { version = "0.5.2", features = ["all"] } clap = "3.1.15" +indicatif = "0.17.6" anyhow = "1.0.57" tabled = "0.15.0" log = "0.4.17" walkdir = "2.3.2" pretty_env_logger = "0.5.0" term_size = "0.3.2" - -[dependencies.vach] -path = "../vach" -features = ["all"] -