diff --git a/Cargo.lock b/Cargo.lock index 1bf2f99..2f354d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aluvm" -version = "0.11.0-beta.9" +version = "0.11.0" dependencies = [ "amplify", "ascii-armor", @@ -27,9 +27,9 @@ dependencies = [ [[package]] name = "amplify" -version = "4.7.0" +version = "4.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7147b742325842988dd6c793d55f58df3ae36bccf7d9b6e07db10ab035be343d" +checksum = "b2090b9b79b61d4047a307a46de043d0ee5ec406d99a7d652341b96d48ed5567" dependencies = [ "amplify_apfloat", "amplify_derive", diff --git a/Cargo.toml b/Cargo.toml index 5f80930..4a1cea5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aluvm" description = "Functional registry-based RISC virtual machine" -version = "0.11.0-beta.9" +version = "0.11.0" authors = ["Dr Maxim Orlovsky "] repository = "https://github.com/aluvm/rust-aluvm" homepage = "https://aluvm.org" @@ -21,12 +21,12 @@ name = "aluvm-stl" required-features = ["stl"] [dependencies] -amplify = { version = "4.7.0", default-features = false, features = ["apfloat", "derive", "hex"] } +amplify = { version = "~4.7.1", default-features = false, features = ["apfloat", "derive", "hex"] } ascii-armor = { version = "0.7.2", optional = true } baid64 = "0.2.2" paste = "1" -strict_encoding = { version = "2.7.0", default-features = false, features = ["float", "derive"] } -strict_types = { version = "2.7.2", optional = true } +strict_encoding = { version = "~2.7.0", default-features = false, features = ["float", "derive"] } +strict_types = { version = "~2.7.2", optional = true } sha2 = "0.10.8" blake3 = "1.5.4" ripemd = "0.1.3"