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

@@ -59,14 +59,14 @@ digest_auth = { version = "0.3", optional = true }
reqwest = { version = "0.11", features = ["json"], optional = true }
# Used for the binaries
tokio = { version = "1", features = ["full"], optional = true }
tokio = { version = "1", features = ["rt-multi-thread", "macros"], optional = true }
[build-dependencies]
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.3", default-features = false }
monero-generators = { path = "generators", version = "0.3", default-features = false }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros"] }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.7", features = ["tests"] }