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
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
flake-parts.url = "github:hercules-ci/flake-parts";
lean4-nix.url = "github:lenianiva/lean4-nix";
blake3 = {
url = "github:BLAKE3-team/BLAKE3?ref=refs/tags/1.8.3";
url = "github:BLAKE3-team/BLAKE3?ref=refs/tags/1.8.4";
flake = false;
};
# Rust-related inputs
Expand Down
2 changes: 1 addition & 1 deletion lakefile.lean
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lean_exe Blake3Test

-- BLAKE3 C source
abbrev blake3RepoURL := "https://github.com/BLAKE3-team/BLAKE3"
abbrev blake3RepoTag := "1.8.3"
abbrev blake3RepoTag := "1.8.4"

target cloneBlake3 pkg : GitRepo := do
let repoDir : GitRepo := pkg.dir / "blake3"
Expand Down
10 changes: 5 additions & 5 deletions rust/Cargo.lock

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

4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2024"
crate-type = ["staticlib"]

[dependencies]
blake3 = "1.8.3"
lean-ffi = { git = "https://github.com/argumentcomputer/lean-ffi", rev = "2ee6267354ce460a8dd95ae9f087cc2569a90ad6" }
blake3 = "1.8.4"
lean-ffi = { git = "https://github.com/argumentcomputer/lean-ffi", rev = "cc98ebf67bf453ac3827cb767f78b13ea674dd6a" }

[profile.dev]
panic = "abort"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ static HASHER_CLASS: LazyLock<ExternalClass> =

#[unsafe(no_mangle)]
pub extern "C" fn rs_blake3_version() -> LeanString<LeanOwned> {
LeanString::new("1.8.3")
LeanString::new("1.8.4")
}

#[unsafe(no_mangle)]
Expand Down
Loading