From be9e0dde3e5f9ce8710021af6984f54ede5b4ab4 Mon Sep 17 00:00:00 2001 From: lemonpartee Date: Tue, 27 Aug 2024 09:25:35 +0200 Subject: [PATCH] Remove unused dependencies --- Cargo.toml | 3 +-- circuits/Cargo.toml | 3 +-- core/Cargo.toml | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef725fe2d..de08a190e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ risc0-zkvm = "0.21.0" serde = { version = "1.0", default-features = false } serde_json = "1.0.108" byteorder = "1.5.0" -secp256k1 = {version="0.29.0", features=["serde"]} +secp256k1 = { version = "0.29.0", features = ["serde"] } crypto-bigint = { version = "=0.5.5", default-features = false } thiserror = "1.0.57" tracing = { version = "0.1.40", default-features = false } @@ -21,7 +21,6 @@ tokio = "1.37.0" jsonrpsee = "0.22.5" async-trait = "0.1.79" futures = "0.3.30" -dotenv = "0.15.0" clap = "4.5.4" toml = "0.8.12" sqlx = { version = "0.7.4", default-features = false } diff --git a/circuits/Cargo.toml b/circuits/Cargo.toml index 771a9c360..f2489a317 100644 --- a/circuits/Cargo.toml +++ b/circuits/Cargo.toml @@ -8,6 +8,5 @@ crypto-bigint = { workspace = true } k256 = { workspace = true, features = ["arithmetic", "serde", "expose-field", "ecdsa"] } sha2 = { workspace = true } serde = { workspace = true, features = ["derive"] } -lazy_static = { workspace = true, features = ["spin_no_std"]} +lazy_static = { workspace = true, features = ["spin_no_std"] } tracing = { workspace = true, default-features = false } -tracing-subscriber = { workspace = true } diff --git a/core/Cargo.toml b/core/Cargo.toml index c44b76c5f..4af3961c4 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -23,7 +23,6 @@ tokio = { workspace = true, features = ["full"] } jsonrpsee = { workspace = true, features = ["server", "http-client", "macros"] } async-trait = { workspace = true } futures = { workspace = true } -dotenv = { workspace = true } clap = { workspace = true, features = ["derive"] } toml = { workspace = true } sqlx = { workspace = true, features = ["runtime-tokio", "postgres", "macros"] }