Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Change to cargo-hax:

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

Changes to the Lean backend:
- Improve support for functionalized loops (#1695)
Expand Down
2 changes: 1 addition & 1 deletion hax-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
edition.workspace = true
edition = "2021"
repository.workspace = true
readme = "README.md"
description = "Hax-specific helpers for Rust programs"
Expand Down
2 changes: 1 addition & 1 deletion hax-lib/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
edition.workspace = true
edition = "2021"
repository.workspace = true
readme = "README.md"
description = "Hax-specific proc-macros for Rust programs"
Expand Down
2 changes: 1 addition & 1 deletion hax-lib/macros/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
edition.workspace = true
edition = "2021"
repository.workspace = true
readme = "README.md"
description = "Hax-internal types"
Expand Down
2 changes: 1 addition & 1 deletion hax-lib/src/dummy.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod abstraction;
pub use abstraction::*;
pub use abstraction::Concretization;

pub mod prop;
pub use prop::*;
Expand Down
Loading