diff --git a/core/Cargo.toml b/core/Cargo.toml index f87fa0c6df..f18191053d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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 }