diff --git a/Cargo.lock b/Cargo.lock index 2e687e58..83083413 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,8 +4,9 @@ version = 3 [[package]] name = "aluvm" -version = "0.12.0-alpha.1" -source = "git+https://github.com/AluVM/rust-aluvm?branch=v0.12#71db1b700e060dfda00403a551c9127dec31ad02" +version = "0.12.0-beta.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2505dfdc1b6c3455b65b212c50a005ebd6c1bfb057e0536de33172620c6e0635" dependencies = [ "amplify", "ascii-armor", @@ -392,7 +393,7 @@ dependencies = [ [[package]] name = "rgb-core" -version = "0.12.0-nightly" +version = "0.12.0-beta.1" dependencies = [ "aluvm", "amplify", diff --git a/Cargo.toml b/Cargo.toml index e63e648b..63607ad6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rgb-core" -version = "0.12.0-nightly" +version = "0.12.0-beta.1" authors = ["Dr Maxim Orlovsky "] description = "RGB Core Library: confidential & scalable smart contracts on Bitcoin & Lightning (consensus layer)" repository = "https://github.com/RGB-WG/rgb-core" @@ -26,7 +26,7 @@ amplify = "~4.8.0" baid64 = "~0.3.0" strict_encoding = "~2.8.0" strict_types = "~2.8.0" # TODO: Make strict types optional, used only in STL -aluvm = { version = "~0.12.0-alpha.1", features = ["zk-aluvm"] } +aluvm = { version = "~0.12.0-beta.1", features = ["zk-aluvm"] } commit_verify = { version = "~0.12.0-alpha.2", features = ["derive"] } single_use_seals = "~0.12.0-alpha.2" serde = { version = "1", features = ["derive"], optional = true } @@ -53,6 +53,3 @@ wasm-bindgen-test = "0.3" [package.metadata.docs.rs] features = ["all"] - -[patch.crates-io] -aluvm = { git = "https://github.com/AluVM/rust-aluvm", branch = "v0.12" }