From ff5b3d4a7fe84dd621333dfa1367345834d2a375 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Tue, 13 Aug 2024 09:09:19 -0400 Subject: [PATCH] Remove unused dependencies Clean up dependency declarations after moving the demo code. --- demo/Cargo.toml | 8 -------- t256/Cargo.toml | 10 ---------- 2 files changed, 18 deletions(-) diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 9db10ba..87264dd 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -18,9 +18,7 @@ boomerang-macros = { path="../macros"} t256 = { path = "../t256" } rand = { version = "0.8.5" } rand_core = { version = "0.6.4" } -merlin = { version = "3.0.0" } ark-ff-macros = { version = "0.4.2", default-features = false } -sha2 = "0.10.8" axum = "0.7" # or the latest version axum-server = { version = "0.6", features = ["tls-rustls"] } tokio = { version = "1", features = ["full"] } @@ -30,9 +28,3 @@ reqwest = { version = "0.12", features = ["rustls-tls", "json"] } serde = { version = "1", features = ["derive"] } bincode = "1.3" lazy_static = "1.4.0" - -[dev-dependencies] -ark-relations = { version = "0.4.0", default-features = false } -ark-secp256r1 = {default-features = false, git = "https://github.com/arkworks-rs/curves" } -criterion = "0.5.1" -sha2 = "0.10.8" diff --git a/t256/Cargo.toml b/t256/Cargo.toml index 773dbce..dc64052 100644 --- a/t256/Cargo.toml +++ b/t256/Cargo.toml @@ -20,16 +20,6 @@ rand = { version = "0.8.5" } rand_core = { version = "0.6.4" } merlin = { version = "3.0.0" } ark-ff-macros = { version = "0.4.2", default-features = false } -sha2 = "0.10.8" -axum = "0.7" # or the latest version -axum-server = { version = "0.6", features = ["tls-rustls"] } -tokio = { version = "1", features = ["full"] } -tracing = "0.1" # Ensure you have tracing -tracing-subscriber = { version = "0.3", features = ["env-filter"] } -reqwest = { version = "0.12", features = ["rustls-tls", "json"] } -serde = { version = "1", features = ["derive"] } -bincode = "1.3" -lazy_static = "1.4.0" [dev-dependencies] ark-relations = { version = "0.4.0", default-features = false }