Skip to content

Commit

Permalink
feat: Set minimum supported rust version (MSRV)
Browse files Browse the repository at this point in the history
Make the MSRV explicit. Also simplifies detection of future semver
incompatibilities based on the MSRV.
  • Loading branch information
jan-ferdinand committed Dec 8, 2024
1 parent 814f5d5 commit a6cc98a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ build-override.opt-level = 3
[workspace.package]
version = "0.43.0"
edition = "2021"
rust-version = "1.80"
authors = ["Triton Software AG"]
license = "Apache-2.0"
homepage = "https://triton-vm.org/"
Expand Down
1 change: 1 addition & 0 deletions triton-air/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The Arithmetic Intermediate Representation (AIR) for Triton VM.
readme = "README.md"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
1 change: 1 addition & 0 deletions triton-constraint-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Emits efficient code from Triton VM's AIR.
readme = "README.md"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
1 change: 1 addition & 0 deletions triton-constraint-circuit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ AIR constraints build helper for Triton VM.
readme = "README.md"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
1 change: 1 addition & 0 deletions triton-isa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ readme = "README.md"

version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down
1 change: 1 addition & 0 deletions triton-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ categories = ["cryptography", "mathematics"]

version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
Expand Down

0 comments on commit a6cc98a

Please sign in to comment.