Skip to content

Commit

Permalink
Merge pull request #97 from AluVM/v0.11
Browse files Browse the repository at this point in the history
Work on v0.11
  • Loading branch information
dr-orlovsky authored Nov 19, 2023
2 parents 4916526 + cdcaea0 commit 53ff94d
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 70 deletions.
125 changes: 63 additions & 62 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aluvm"
description = "Functional registry-based RISC virtual machine"
version = "0.10.6"
version = "0.11.0-beta.1"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
repository = "https://github.com/aluvm/rust-aluvm"
homepage = "https://aluvm.org"
Expand All @@ -28,7 +28,7 @@ strict_types = { version = "1.6.3", optional = true }
sha2 = "0.10.8"
ripemd = "0.1.3"
baid58 = "0.4.4"
secp256k1 = { version = "0.27.0", optional = true, features = ["global-context"] }
secp256k1 = { version = "0.28.0", optional = true, features = ["global-context"] }
curve25519-dalek = { version = "3.2", optional = true }
half = "~2.2.0" # Required to maintain MSRV
serde_crate = { package = "serde", version = "1", optional = true }
Expand Down
1 change: 1 addition & 0 deletions src/isa/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ where
set.extend(DigestOp::isa_ids());
set.extend(Secp256k1Op::isa_ids());
set.extend(Curve25519Op::isa_ids());
set.extend(Extension::isa_ids());
set
}

Expand Down
Loading

0 comments on commit 53ff94d

Please sign in to comment.