mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-22 11:39:35 +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"]
|
||||
|
||||
[dependencies]
|
||||
zeroize = "^1.5"
|
||||
zeroize = { version = "^1.5", default-features = false }
|
||||
|
||||
[features]
|
||||
# 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"
|
||||
tendermint = { package = "tendermint-machine", path = "./tendermint" }
|
||||
|
||||
tokio = { version = "1", features = ["macros", "sync", "time", "rt"] }
|
||||
tokio = { version = "1", features = ["sync", "time", "rt"] }
|
||||
|
||||
[features]
|
||||
tests = []
|
||||
|
|
|
@ -16,4 +16,7 @@ log = "0.4"
|
|||
parity-scale-codec = { version = "3", features = ["derive"] }
|
||||
|
||||
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