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
2 changes: 1 addition & 1 deletion anneal/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion anneal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = [".", "tools/doc_gen"]
[package]
name = "cargo-anneal"
edition = "2024"
version = "0.1.0-alpha.20"
version = "0.1.0-alpha.21"
description = "Formally verify that your safety comments are correct."
categories = [
"development-tools::cargo-plugins",
Expand Down
4 changes: 1 addition & 3 deletions anneal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl std::ops::Div<PositiveUsize> for usize {
Install Anneal and its required toolchains (Charon and Aeneas):

```bash
cargo install cargo-anneal@0.1.0-alpha.20
cargo install cargo-anneal@0.1.0-alpha.21
cargo anneal setup
```

Expand Down Expand Up @@ -137,8 +137,6 @@ cargo anneal verify

## Usage & Commands

Anneal wraps the underlying tools to provide a seamless experience:

- **`cargo anneal verify`**: Verifies the target crate.
- **`cargo anneal expand`**: Outputs the generated Lean code without running full verification (useful for debugging).
- **`cargo anneal generate`**: Generates the `.lean` files on disk, allowing you to iterate on proofs using standard Lean tooling before copying them back to Rust source.
Loading