mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Only pull in subtle's std feature if "std" is enabled
Otherwise subtle implicitly pulls in std because it's a default feature
This commit is contained in:
parent
010e1f8dec
commit
bdcfc30fe8
1 changed files with 2 additions and 1 deletions
|
|
@ -34,6 +34,7 @@ version = "0.6"
|
|||
|
||||
[dependencies.subtle]
|
||||
version = "^0.1"
|
||||
default-features = false
|
||||
|
||||
[dependencies.generic-array]
|
||||
# same version that digest depends on
|
||||
|
|
@ -48,7 +49,7 @@ version = "0.6"
|
|||
[features]
|
||||
nightly = ["radix_51"]
|
||||
default = ["std"]
|
||||
std = ["rand"]
|
||||
std = ["rand", "subtle/std"]
|
||||
alloc = []
|
||||
yolocrypto = []
|
||||
bench = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue