Skip to content

Commit d6f9f61

Browse files
authored
Merge pull request #1726 from cryspen/hax-lib-no-edition
Switch hax-lib to Rust edition 2021.
2 parents 740e676 + 1d5431a commit d6f9f61

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ Change to cargo-hax:
3939

4040
Changes to hax-lib:
4141
- New behavior for `hax_lib::include`: it now forces inclusion when in contradiction with `-i` flag.
42+
- hax-lib requires edition 2021 instead of 2024 (#1726)
4243

4344
Changes to the Lean backend:
4445
- Improve support for functionalized loops (#1695)

hax-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version.workspace = true
44
authors.workspace = true
55
license.workspace = true
66
homepage.workspace = true
7-
edition.workspace = true
7+
edition = "2021"
88
repository.workspace = true
99
readme = "README.md"
1010
description = "Hax-specific helpers for Rust programs"

hax-lib/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version.workspace = true
44
authors.workspace = true
55
license.workspace = true
66
homepage.workspace = true
7-
edition.workspace = true
7+
edition = "2021"
88
repository.workspace = true
99
readme = "README.md"
1010
description = "Hax-specific proc-macros for Rust programs"

hax-lib/macros/types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version.workspace = true
44
authors.workspace = true
55
license.workspace = true
66
homepage.workspace = true
7-
edition.workspace = true
7+
edition = "2021"
88
repository.workspace = true
99
readme = "README.md"
1010
description = "Hax-internal types"

hax-lib/src/dummy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mod abstraction;
2-
pub use abstraction::*;
2+
pub use abstraction::Concretization;
33

44
pub mod prop;
55
pub use prop::*;

0 commit comments

Comments
 (0)