mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
cargo update
Since p256 now pulls in an extra crate with this update, the {k,p}256 imports
disable default-features to prevent growing the tree.
This commit is contained in:
@@ -29,8 +29,8 @@ group = "0.13"
|
||||
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3", optional = true }
|
||||
|
||||
elliptic-curve = { version = "0.13", features = ["hash2curve"], optional = true }
|
||||
p256 = { version = "0.13", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
||||
k256 = { version = "0.13", features = ["arithmetic", "bits", "hash2curve"], optional = true }
|
||||
p256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits", "hash2curve"], optional = true }
|
||||
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits", "hash2curve"], optional = true }
|
||||
|
||||
minimal-ed448 = { path = "../ed448", version = "0.3", optional = true }
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ hex-literal = "0.4"
|
||||
|
||||
blake2 = "0.10"
|
||||
|
||||
k256 = { version = "0.13", features = ["arithmetic", "bits"] }
|
||||
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
||||
dalek-ff-group = { path = "../dalek-ff-group" }
|
||||
|
||||
transcript = { package = "flexible-transcript", path = "../transcript", features = ["recommended"] }
|
||||
|
||||
@@ -20,8 +20,8 @@ subtle = "^2.4"
|
||||
group = "0.13"
|
||||
|
||||
[dev-dependencies]
|
||||
k256 = { version = "^0.13.1", features = ["bits"] }
|
||||
p256 = { version = "^0.13.1", features = ["bits"] }
|
||||
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
||||
p256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
||||
|
||||
bls12_381 = "0.8"
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ rand_core = { version = "0.6", optional = true }
|
||||
[dev-dependencies]
|
||||
rand_core = "0.6"
|
||||
|
||||
k256 = { version = "0.13", features = ["bits"] }
|
||||
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
||||
dalek-ff-group = { path = "../dalek-ff-group" }
|
||||
|
||||
[features]
|
||||
|
||||
Reference in New Issue
Block a user