Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rust version #1739

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Clippy
  • Loading branch information
matthiasgoergens committed May 27, 2024
commit af47a9e275a75f44c2a24f6928b87e53ce1b8b3b
2 changes: 1 addition & 1 deletion examples/mozak-sort/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "0.1.0"

[dependencies]
mozak-sdk = { path = "../../sdk", default-features = false }
rand = { version = "0.8", default_features = false, features = ["alloc", "small_rng"] }
rand = { version = "0.8", default-features = false, features = ["alloc", "small_rng"] }

[[bin]]
name = "mozak-sort"
Expand Down
4 changes: 2 additions & 2 deletions expr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
//!
//! - [ ] TODO: support `|` via multiplication.
//! - [ ] TODO support `&` via distributive law, and integration with constraint
//! builder. (a & b) | c == (a | c) & (b | c) == [(a | c), (b | c)] where [..]
//! means split into multiple constraints.
//! builder. (a & b) | c == (a | c) & (b | c) == [(a | c), (b | c)] where [..]
//! means split into multiple constraints.

pub mod ops;

Expand Down
Loading