From 343e352f4434f14f4c2f55b25ed31f6d93ac0595 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Wed, 21 Feb 2024 13:19:14 +1300 Subject: [PATCH] Trim dependencies --- Cargo.lock | 8 -------- chorus-bin/Cargo.toml | 3 --- chorus-lib/Cargo.toml | 5 ----- 3 files changed, 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71cd94b..35958ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,14 +149,11 @@ dependencies = [ "dashmap", "env_logger", "futures", - "heed", "hyper", "hyper-tungstenite", "lazy_static", "log", - "mmap-append", "rustls-pemfile", - "secp256k1", "serde", "tempfile", "textnonce", @@ -170,20 +167,15 @@ dependencies = [ name = "chorus-lib" version = "1.1.0" dependencies = [ - "dashmap", - "env_logger", "futures", "heed", "hyper", "hyper-tungstenite", - "lazy_static", "log", "mmap-append", - "rustls-pemfile", "secp256k1", "serde", "tempfile", - "textnonce", "tokio", "tokio-rustls", "toml", diff --git a/chorus-bin/Cargo.toml b/chorus-bin/Cargo.toml index 2790794..c08f5b7 100644 --- a/chorus-bin/Cargo.toml +++ b/chorus-bin/Cargo.toml @@ -12,14 +12,11 @@ chorus-lib = { path = "../chorus-lib" } dashmap = "5.5" env_logger = "0.10" futures = "0.3" -heed = { git = "https://github.com/meilisearch/heed", rev = "64fd6fec293c0dee94855b8267557ce03e7ce5d8" } hyper = { version = "0.14", features = [ "http1", "server", "runtime", "stream" ] } hyper-tungstenite = "0.11" lazy_static = "1.4" log = "0.4" -mmap-append = { git = "https://github.com/mikedilger/mmap-append", rev = "0d20e193e7f13a442865a4a40a5da9a120e87411" } rustls-pemfile = "1.0" -secp256k1 = { version = "0.28", features = [ "hashes", "global-context", "rand-std" ] } serde = { version = "1.0", features = ["derive"] } textnonce = "1" tokio = { version = "1", features = [ "full" ] } diff --git a/chorus-lib/Cargo.toml b/chorus-lib/Cargo.toml index bf8ae36..bdb4790 100644 --- a/chorus-lib/Cargo.toml +++ b/chorus-lib/Cargo.toml @@ -8,19 +8,14 @@ repository = "https://github.com/mikedilger/chorus" edition = "2021" [dependencies] -dashmap = "5.5" -env_logger = "0.10" futures = "0.3" heed = { git = "https://github.com/meilisearch/heed", rev = "64fd6fec293c0dee94855b8267557ce03e7ce5d8" } hyper = { version = "0.14", features = [ "http1", "server", "runtime", "stream" ] } hyper-tungstenite = "0.11" -lazy_static = "1.4" log = "0.4" mmap-append = { git = "https://github.com/mikedilger/mmap-append", rev = "0d20e193e7f13a442865a4a40a5da9a120e87411" } -rustls-pemfile = "1.0" secp256k1 = { version = "0.28", features = [ "hashes", "global-context", "rand-std" ] } serde = { version = "1.0", features = ["derive"] } -textnonce = "1" tokio = { version = "1", features = [ "full" ] } tokio-rustls = "0.24" toml = "0.8"