Skip to content

Commit

Permalink
Merge pull request #5 from dfns/fix-nostd
Browse files Browse the repository at this point in the history
Fix requiring std and alloc in some dependencies
  • Loading branch information
survived authored Feb 8, 2024
2 parents 4c06191 + 8a71e37 commit 3329cd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ keywords = ["elliptic-curves", "stark-curve"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ff = { version = "0.13", features = ["derive"] }
ff = { version = "0.13", default-features = false, features = ["derive"] }
hex-literal = "0.3"
primeorder = "0.13"
subtle = "2"
zeroize = "1.5"
subtle = { version = "2", default-features = false }
zeroize = { version = "1.5", default-features = false }

[dev-dependencies]
rand = "0.8"
Expand Down

0 comments on commit 3329cd0

Please sign in to comment.