mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-03 17:40:34 +00:00
Further dependency minimization for build times
This commit is contained in:
parent
afb385fba4
commit
0eb56406a4
3 changed files with 6 additions and 3 deletions
|
@ -13,7 +13,7 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zeroize = "^1.5"
|
zeroize = { version = "^1.5", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# Commented for now as it requires nightly and we don't use nightly
|
# Commented for now as it requires nightly and we don't use nightly
|
||||||
|
|
|
@ -32,7 +32,7 @@ scale = { package = "parity-scale-codec", version = "3", features = ["derive"] }
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tendermint = { package = "tendermint-machine", path = "./tendermint" }
|
tendermint = { package = "tendermint-machine", path = "./tendermint" }
|
||||||
|
|
||||||
tokio = { version = "1", features = ["macros", "sync", "time", "rt"] }
|
tokio = { version = "1", features = ["sync", "time", "rt"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
tests = []
|
tests = []
|
||||||
|
|
|
@ -16,4 +16,7 @@ log = "0.4"
|
||||||
parity-scale-codec = { version = "3", features = ["derive"] }
|
parity-scale-codec = { version = "3", features = ["derive"] }
|
||||||
|
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
tokio = { version = "1", features = ["macros", "sync", "time", "rt"] }
|
tokio = { version = "1", features = ["sync", "time"] }
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
||||||
|
|
Loading…
Reference in a new issue