Skip to content

Commit 5de71d9

Browse files
authored
Merge pull request #341 from anoma/grarco/deps-cleanup
Dependecies cleanup
2 parents 04cef0f + 7b2f55d commit 5de71d9

11 files changed

Lines changed: 3 additions & 51 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ readme = "README.md"
1111
version = "2.4.2"
1212

1313
[workspace.dependencies]
14-
clokwerk = "0.4.0"
1514
axum = { version = "0.7.2", features = ["tower-log", "http2"] }
1615
tokio = { version = "1.0", features = ["full"] }
1716
tower = { version = "0.4.13", features = [
@@ -27,18 +26,14 @@ tower-http = { version = "0.5.0", features = [
2726
"trace",
2827
"cors",
2928
] }
30-
tower-layer = "0.3.2"
3129
tracing = "0.1"
3230
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
3331
serde = { version = "1.0.138", features = ["derive"] }
3432
serde_json = "1.0"
3533
clap = { version = "4.4.2", features = ["derive", "env"] }
36-
uuid = { version = "1.4.1", features = ["v4", "serde"] }
37-
reqwest = { version = "0.12.0", features = ["json", "cookies"] }
3834
axum-macros = "0.4.1"
3935
axum-extra = { version = "0.9.3", features = ["query"] }
4036
chrono = { version = "0.4.30", features = ["serde"] }
41-
async-trait = "0.1.73"
4237
anyhow = "1.0.75"
4338
num-bigint = "0.4.6"
4439
namada_core = "0.47.2"
@@ -50,9 +45,7 @@ namada_token = "0.47.2"
5045
namada_parameters = "0.47.2"
5146
namada_proof_of_stake = "0.47.2"
5247
tendermint = "0.40.1"
53-
tendermint-config = "0.40.1"
5448
tendermint-rpc = { version = "0.40.1", features = ["http-client"] }
55-
tendermint-proto = "0.40.1"
5649
subtle-encoding = "0.5.1"
5750
bimap = { version = "0.6.3", features = ["serde"] }
5851
async-stream = "0.3.5"
@@ -79,14 +72,11 @@ test_helpers = { path = "test_helpers" }
7972
shared = { path = "shared" }
8073
lazy_static = "1.4.0"
8174
validator = { version = "0.16.0", features = ["derive"] }
82-
derive_builder = "0.12.0"
8375
clap-verbosity-flag = "2.1.1"
84-
duration-str = "0.7.1"
8576
fake = { version = "2.10.0", features = ["derive"] }
8677
rand = "0.8.5"
8778
bigdecimal = "0.4.5"
8879
strum = "0.26.3"
89-
strum_macros = "0.26.3"
9080
sha256 = "1.5.0"
9181
rlimit = "0.10.2"
9282
axum-prometheus = "0.7.0"

chain/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ name = "chain"
1313
path = "src/main.rs"
1414

1515
[dependencies]
16-
test_helpers.workspace = true
1716
tokio.workspace = true
1817
tokio-retry.workspace = true
1918
tracing.workspace = true
@@ -36,3 +35,6 @@ rlimit.workspace = true
3635

3736
[build-dependencies]
3837
vergen = { workspace = true, features = ["build", "git", "gitcl"] }
38+
39+
[dev-dependencies]
40+
test_helpers.workspace = true

governance/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ futures.workspace = true
2626
deadpool-diesel.workspace = true
2727
diesel.workspace = true
2828
orm.workspace = true
29-
tokio-retry.workspace = true
3029
serde_json.workspace = true
3130

3231
[build-dependencies]

orm/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ name = "orm"
1313
path = "src/lib.rs"
1414

1515
[dependencies]
16-
anyhow.workspace = true
17-
clap.workspace = true
1816
deadpool-diesel.workspace = true
1917
diesel-derive-enum.workspace = true
2018
diesel.workspace = true

parameters/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,9 @@ namada_core.workspace = true
2323
namada_parameters.workspace = true
2424
tendermint-rpc.workspace = true
2525
shared.workspace = true
26-
serde_json.workspace = true
27-
futures.workspace = true
2826
deadpool-diesel.workspace = true
2927
diesel.workspace = true
30-
diesel_migrations.workspace = true
3128
orm.workspace = true
32-
tokio-retry.workspace = true
3329
smooth-operator.workspace = true
3430

3531
[build-dependencies]

pos/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ shared.workspace = true
2525
futures.workspace = true
2626
deadpool-diesel.workspace = true
2727
diesel.workspace = true
28-
diesel_migrations.workspace = true
2928
orm.workspace = true
3029

3130
[build-dependencies]

rewards/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,15 @@ path = "src/main.rs"
1515
[dependencies]
1616
tokio.workspace = true
1717
tracing.workspace = true
18-
tracing-subscriber.workspace = true
1918
chrono.workspace = true
2019
clap.workspace = true
2120
anyhow.workspace = true
2221
namada_sdk.workspace = true
2322
shared.workspace = true
2423
futures.workspace = true
25-
tokio-retry.workspace = true
2624
deadpool-diesel.workspace = true
2725
diesel.workspace = true
2826
orm.workspace = true
29-
clap-verbosity-flag.workspace = true
3027
tendermint-rpc.workspace = true
3128

3229
[build-dependencies]

test_helpers/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ path = "src/lib.rs"
1515
[dependencies]
1616
orm.workspace = true
1717
anyhow.workspace = true
18-
clap.workspace = true
1918
deadpool-diesel.workspace = true
2019
diesel.workspace = true
21-
serde.workspace = true
2220
shared.workspace = true

transactions/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,11 @@ chrono.workspace = true
2020
clap.workspace = true
2121
anyhow.workspace = true
2222
namada_sdk.workspace = true
23-
namada_core.workspace = true
2423
tendermint-rpc.workspace = true
2524
shared.workspace = true
26-
futures.workspace = true
2725
deadpool-diesel.workspace = true
2826
diesel.workspace = true
29-
diesel_migrations.workspace = true
3027
orm.workspace = true
31-
clap-verbosity-flag.workspace = true
3228
serde_json.workspace = true
3329

3430
[build-dependencies]

0 commit comments

Comments
 (0)