Correct various no_std definitions

This commit is contained in:
Luke Parker
2023-05-13 04:03:56 -04:00
parent f069567f12
commit 227176e4b8
8 changed files with 25 additions and 22 deletions

View File

@@ -15,22 +15,23 @@ rustdoc-args = ["--cfg", "docsrs"]
rustversion = "1"
thiserror = { version = "1", optional = true }
rand_core = "0.6"
rand_core = { version = "0.6", default-features = false }
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }
digest = "0.10"
digest = { version = "0.10", default-features = false }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", default-features = false }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3" }
ff = { version = "0.13", default-features = false }
group = { version = "0.13", default-features = false }
ff = "0.13"
group = "0.13"
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"], optional = true }
multiexp = { path = "../multiexp", version = "0.3", default-features = false, features = ["batch"], optional = true }
[dev-dependencies]
hex-literal = "0.4"
rand_core = { version = "0.6", features = ["getrandom"] }
blake2 = "0.10"
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }