Skip to content

Commit

Permalink
fix default features
Browse files Browse the repository at this point in the history
  • Loading branch information
LimpidCrypto committed Aug 9, 2024
1 parent 7cfc8d8 commit a8a480e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ lazy_static = "1.4.0"
sha2 = { version = "0.10.2", default-features = false }
rand_hc = "0.3.1"
ripemd = "0.1.1"
ed25519-dalek = { version = "2.1.1" }
ed25519-dalek = { version = "2.1.1", default-features = false, features = [
"alloc",
"zeroize",
] }
secp256k1 = { version = "0.29.0", default-features = false, features = [
"alloc",
] }
Expand Down Expand Up @@ -91,7 +94,7 @@ name = "benchmarks"
harness = false

[features]
default = ["std", "core", "models", "websocket", "websocket-codec"]
default = ["std", "utils", "wallet", "models", "websocket"]
models = ["transactions", "ledger", "requests", "results"]
transactions = ["amounts", "currencies"]
requests = ["amounts", "currencies"]
Expand Down

0 comments on commit a8a480e

Please sign in to comment.