diff --git a/Cargo.toml b/Cargo.toml index ef725fe2..de08a190 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 771a9c36..f2489a31 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 c44b76c5..4af3961c 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"] }