Remove unnecessary dependencies (#433)
This commit is contained in:
parent
cb343156b7
commit
285804e1d5
|
@ -23,7 +23,6 @@ indexmap = { version = "1.9", features = ["serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
tokio = { version = "1.23", features = ["macros", "rt"] }
|
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -26,6 +26,5 @@ thiserror = "1.0.40"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.10.0"
|
|
||||||
serde_json = "1.0.99"
|
serde_json = "1.0.99"
|
||||||
tokio = { version = "1", features = ["time"] }
|
tokio = { version = "1", features = ["time"] }
|
||||||
|
|
|
@ -7,7 +7,6 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
async-stream = "0.3"
|
|
||||||
bytes = "1.3"
|
bytes = "1.3"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
consensus-engine = { path = "../../consensus-engine", features = ["serde"] }
|
consensus-engine = { path = "../../consensus-engine", features = ["serde"] }
|
||||||
|
|
|
@ -32,16 +32,13 @@ serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = { version = "1.0", optional = true }
|
serde_json = { version = "1.0", optional = true }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-appender = "0.2"
|
|
||||||
tracing-subscriber = { version = "0.3", features = ["json"] }
|
tracing-subscriber = { version = "0.3", features = ["json"] }
|
||||||
tracing-gelf = "0.7"
|
|
||||||
tower = { version = "0.4", optional = true }
|
tower = { version = "0.4", optional = true }
|
||||||
tower-http = { version = "0.3", features = ["cors", "trace"] }
|
tower-http = { version = "0.3", features = ["cors", "trace"] }
|
||||||
tokio = { version = "1", features = ["sync", "macros"] }
|
tokio = { version = "1", features = ["sync", "macros"] }
|
||||||
tower-service = "0.3.2"
|
tower-service = "0.3.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
metrics = { path = "../metrics", features = ["gql"] }
|
|
||||||
once_cell = "1.17"
|
once_cell = "1.17"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -8,7 +8,6 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
bincode = { version = "2.0.0-rc.2", features = ["serde"] }
|
bincode = { version = "2.0.0-rc.2", features = ["serde"] }
|
||||||
chrono = "0.4"
|
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
linked-hash-map = { version = "0.5.6", optional = true }
|
linked-hash-map = { version = "0.5.6", optional = true }
|
||||||
nomos-network = { path = "../network" }
|
nomos-network = { path = "../network" }
|
||||||
|
|
|
@ -11,7 +11,6 @@ required-features = ["gql"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = { version = "0.6", optional = true }
|
axum = { version = "0.6", optional = true }
|
||||||
async-graphql = { version = "5", optional = true, features = ["tracing"] }
|
async-graphql = { version = "5", optional = true, features = ["tracing"] }
|
||||||
async-graphql-axum = { version = "5", optional = true }
|
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
bytes = "1.3"
|
bytes = "1.3"
|
||||||
clap = { version = "4", features = ["derive", "env"], optional = true }
|
clap = { version = "4", features = ["derive", "env"], optional = true }
|
||||||
|
@ -25,13 +24,11 @@ serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
tokio = { version = "1", features = ["sync", "macros", "time"] }
|
tokio = { version = "1", features = ["sync", "macros", "time"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-appender = "0.2"
|
|
||||||
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
|
||||||
tracing-gelf = "0.7"
|
|
||||||
tower-http = { version = "0.3", features = ["cors", "trace"], optional = true }
|
tower-http = { version = "0.3", features = ["cors", "trace"], optional = true }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
gql = ["clap", "axum", "async-graphql", "async-graphql-axum", "tower-http", "nomos-http/gql"]
|
gql = ["clap", "axum", "async-graphql", "tower-http", "nomos-http/gql"]
|
||||||
|
|
|
@ -21,9 +21,6 @@ thiserror = "1.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
rand = { version = "0.7.3", optional = true }
|
rand = { version = "0.7.3", optional = true }
|
||||||
waku-bindings = { version = "0.1.1", optional = true }
|
waku-bindings = { version = "0.1.1", optional = true }
|
||||||
tracing-appender = "0.2"
|
|
||||||
tracing-subscriber = { version = "0.3", features = ["json"] }
|
|
||||||
tracing-gelf = "0.7"
|
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
nomos-core = { path = "../../nomos-core" }
|
nomos-core = { path = "../../nomos-core" }
|
||||||
|
|
|
@ -16,7 +16,6 @@ thiserror = "1.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.3"
|
|
||||||
tokio = { version = "1", features = ["sync", "macros", "time"] }
|
tokio = { version = "1", features = ["sync", "macros", "time"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -11,7 +11,6 @@ path = "src/bin/app/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
arc-swap = "1.6"
|
|
||||||
bls-signatures = "0.14"
|
bls-signatures = "0.14"
|
||||||
csv = "1"
|
csv = "1"
|
||||||
clap = { version = "4", features = ["derive"] }
|
clap = { version = "4", features = ["derive"] }
|
||||||
|
@ -42,8 +41,5 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "tracing-log"]
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
getrandom = { version = "0.2", features = ["js"] }
|
getrandom = { version = "0.2", features = ["js"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
tempfile = "3.4"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
polars = ["dep:polars"]
|
polars = ["dep:polars"]
|
||||||
|
|
|
@ -22,7 +22,6 @@ mixnet-client = { path = "../mixnet/client" }
|
||||||
mixnet-topology = { path = "../mixnet/topology" }
|
mixnet-topology = { path = "../mixnet/topology" }
|
||||||
# Using older versions, since `mixnet-*` crates depend on `rand` v0.7.3.
|
# Using older versions, since `mixnet-*` crates depend on `rand` v0.7.3.
|
||||||
rand = "0.7.3"
|
rand = "0.7.3"
|
||||||
rand_xoshiro = "0.6"
|
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
secp256k1 = { version = "0.26", features = ["rand"] }
|
secp256k1 = { version = "0.26", features = ["rand"] }
|
||||||
waku-bindings = { version = "0.1.1", optional = true }
|
waku-bindings = { version = "0.1.1", optional = true }
|
||||||
|
|
Loading…
Reference in New Issue