From 5232162d8ba0bb6373646e4eadda269608b4c924 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Wed, 13 Mar 2024 13:00:03 +0100 Subject: [PATCH] chore: update dependencies --- Cargo.lock | 22 ++++++++++++---------- Cargo.toml | 10 ++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a2813e4c..f722ead7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,8 +4,9 @@ version = 3 [[package]] name = "aluvm" -version = "0.11.0-beta.4" -source = "git+https://github.com/AluVM/rust-aluvm?branch=armor#3bf009122c09a90df495049e0182712c675c2b26" +version = "0.11.0-beta.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2032d213fd6b80b26217efb9846b273671acff3f696ada7e0314c6af2b4c3275" dependencies = [ "amplify", "ascii-armor", @@ -201,7 +202,7 @@ dependencies = [ [[package]] name = "bp-consensus" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-core?branch=armor#628854dff6f82f873d6389e1ec8c7ec0b7d00c2d" +source = "git+https://github.com/BP-WG/bp-core?branch=master#1339f9fd96bbba0b3b949c65af1598496ba930eb" dependencies = [ "amplify", "chrono", @@ -215,7 +216,7 @@ dependencies = [ [[package]] name = "bp-core" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-core?branch=armor#628854dff6f82f873d6389e1ec8c7ec0b7d00c2d" +source = "git+https://github.com/BP-WG/bp-core?branch=master#1339f9fd96bbba0b3b949c65af1598496ba930eb" dependencies = [ "amplify", "bp-consensus", @@ -233,7 +234,7 @@ dependencies = [ [[package]] name = "bp-dbc" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-core?branch=armor#628854dff6f82f873d6389e1ec8c7ec0b7d00c2d" +source = "git+https://github.com/BP-WG/bp-core?branch=master#1339f9fd96bbba0b3b949c65af1598496ba930eb" dependencies = [ "amplify", "base85", @@ -247,7 +248,7 @@ dependencies = [ [[package]] name = "bp-seals" version = "0.11.0-beta.4" -source = "git+https://github.com/BP-WG/bp-core?branch=armor#628854dff6f82f873d6389e1ec8c7ec0b7d00c2d" +source = "git+https://github.com/BP-WG/bp-core?branch=master#1339f9fd96bbba0b3b949c65af1598496ba930eb" dependencies = [ "amplify", "baid58", @@ -301,7 +302,7 @@ dependencies = [ [[package]] name = "commit_encoding_derive" version = "0.11.0-beta.4" -source = "git+https://github.com/LNP-BP/client_side_validation?branch=armor#78f22a51b87115869f454ed0516a1bcdd8994db4" +source = "git+https://github.com/LNP-BP/client_side_validation?branch=master#e963d5df29e9c04cb24dfc7d0b3553d286bb1986" dependencies = [ "amplify", "amplify_syn", @@ -313,7 +314,7 @@ dependencies = [ [[package]] name = "commit_verify" version = "0.11.0-beta.4" -source = "git+https://github.com/LNP-BP/client_side_validation?branch=armor#78f22a51b87115869f454ed0516a1bcdd8994db4" +source = "git+https://github.com/LNP-BP/client_side_validation?branch=master#e963d5df29e9c04cb24dfc7d0b3553d286bb1986" dependencies = [ "amplify", "commit_encoding_derive", @@ -793,8 +794,9 @@ dependencies = [ [[package]] name = "strict_types" -version = "2.7.0-beta.1" -source = "git+https://github.com/strict-types/strict-types?branch=armor#00741ba09189536d8cdaf048a7f17795393ee382" +version = "2.7.0-beta.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c32716de4b99b0e8fb0c114e99b6929613e8d7302999c6b8c77251783923ad" dependencies = [ "amplify", "ascii-armor", diff --git a/Cargo.toml b/Cargo.toml index de1439a8..607098da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ required-features = ["stl"] amplify = { version = "~4.6.0", features = ["rand"] } ascii-armor = "0.2.0" strict_encoding = "~2.7.0-beta.1" -strict_types = { version = "~2.7.0-beta.1", features = ["armor"] } +strict_types = { version = "~2.7.0-beta.2", features = ["armor"] } aluvm = { version = "~0.11.0-beta.4", features = ["std", "ascii-armor"] } commit_verify = { version = "~0.11.0-beta.4", features = ["rand", "derive"] } single_use_seals = "~0.11.0-beta.4" @@ -60,10 +60,8 @@ getrandom = { version = "0.2", features = ["js"] } wasm-bindgen-test = "0.3" [package.metadata.docs.rs] -features = [ "all" ] +features = ["all"] [patch.crates-io] -strict_types = { git = "https://github.com/strict-types/strict-types", branch = "armor" } -aluvm = { git = "https://github.com/AluVM/rust-aluvm", branch = "armor" } -commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "armor" } -bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "armor" } +commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "master" } +bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "master" }