diff --git a/Cargo.lock b/Cargo.lock index 08ffc45..7db434c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -947,7 +947,6 @@ dependencies = [ "orm", "rayon", "shared", - "tendermint", "tendermint-rpc", "tokio", "tokio-retry", @@ -8042,10 +8041,8 @@ dependencies = [ "clap", "deadpool-diesel", "diesel", - "futures", "itertools 0.13.0", "lazy_static", - "namada_core", "orm", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index aa89f89..170fc33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,6 @@ serde = { version = "1.0.138", features = [ "derive" ] } serde_json = "1.0" shared = { path = "shared" } tendermint = "0.40.1" -tendermint-config = "0.40.1" tendermint-rpc = {version = "0.40.1", features = ["http-client"]} thiserror = "1.0.56" tokio = { version = "1.0", features = [ "full" ] } diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 10b5cbf..27d4835 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -26,7 +26,6 @@ orm.workspace = true rayon.workspace = true shared.workspace = true tendermint-rpc.workspace = true -tendermint.workspace = true tokio-retry.workspace = true tokio.workspace = true tracing-subscriber.workspace = true diff --git a/webserver/Cargo.toml b/webserver/Cargo.toml index 3f3c01e..d598e3d 100644 --- a/webserver/Cargo.toml +++ b/webserver/Cargo.toml @@ -25,10 +25,8 @@ bincode.workspace = true clap.workspace = true deadpool-diesel.workspace = true diesel.workspace = true -futures.workspace = true itertools.workspace = true lazy_static.workspace = true -namada_core.workspace = true orm.workspace = true serde.workspace = true serde_json.workspace = true