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:
Luke Parker
2023-04-15 23:21:18 -04:00
parent b2169a7316
commit 92ad689c7e
8 changed files with 17 additions and 18 deletions

View File

@@ -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 }