Minimize features pulled in to try and reduce build times

This commit is contained in:
Luke Parker
2023-07-25 22:19:32 -04:00
parent 42eb674d1a
commit 3862731a12
7 changed files with 26 additions and 33 deletions

View File

@@ -31,7 +31,6 @@ scale = { package = "parity-scale-codec", version = "3", features = ["derive"] }
sp-application-crypto = { git = "https://github.com/serai-dex/substrate", default-features = false }
rocksdb = "0.21"
serai-db = { path = "../common/db", features = ["rocksdb"] }
serai-env = { path = "../common/env" }
@@ -42,9 +41,9 @@ tributary = { package = "tributary-chain", path = "./tributary" }
serai-client = { path = "../substrate/client", features = ["serai"] }
hex = "0.4"
serde_json = "1"
serde_json = { version = "1", default-features = false }
log = "0.4"
tokio = { version = "1", features = ["full"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time", "macros"] }
[dev-dependencies]
futures = "0.3"