Skip to content

Commit

Permalink
Constrain MSRV correctly in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
str4d committed Mar 9, 2025
1 parent b853db2 commit bddf252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
edition = "2021"
rust-version = "1.56"
description = "Library for building and interfacing with finite fields"
readme = "README.md"
documentation = "https://docs.rs/ff/"
homepage = "https://github.com/zkcrypto/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/zkcrypto/ff"
edition = "2021"

[dependencies]
bitvec = { version = "1", default-features = false, optional = true }
Expand Down
3 changes: 2 additions & 1 deletion ff_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ authors = [
"Sean Bowe <ewillbefull@gmail.com>",
"Jack Grigg <thestr4d@gmail.com>",
]
edition = "2021"
rust-version = "1.56"
description = "Procedural macro library used to build custom prime field implementations"
documentation = "https://docs.rs/ff-derive/"
homepage = "https://github.com/zkcrypto/ff"
license = "MIT/Apache-2.0"
repository = "https://github.com/zkcrypto/ff"
edition = "2021"

[features]
# enabled when generating bitvec code utilizing the version of ff's bitvec
Expand Down

0 comments on commit bddf252

Please sign in to comment.