Skip to content

Commit

Permalink
num-traits and num-derive: set default-features false
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer committed Jul 10, 2024
1 parent cf100c5 commit f50073d
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,14 @@ doctest = false

[features]
default = ["std"]
std = [
"miden-crypto/std",
"miden-formatting/std",
"math/std",
"winter-utils/std",
"thiserror/std",
]
std = ["miden-crypto/std", "miden-formatting/std", "math/std", "winter-utils/std", "thiserror/std"]

[dependencies]
math = { package = "winter-math", version = "0.9", default-features = false }
miden-crypto = { git = "https://github.com/0xPolygonMiden/crypto", branch = "next", default-features = false }
miden-formatting = { version = "0.1", default-features = false }
num-derive = "0.4"
num-traits = "0.2"
num-derive = { version = "0.4", default-features = false }
num-traits = { version = "0.2", default-features = false }
thiserror = { version = "1.0", git = "https://github.com/bitwalker/thiserror", branch = "no-std", default-features = false }
winter-utils = { package = "winter-utils", version = "0.9", default-features = false }

Expand Down

0 comments on commit f50073d

Please sign in to comment.