From 4f39d17bcd7622be761984d8e663904ea4065c0d Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Thu, 5 Oct 2023 22:50:19 +0200 Subject: [PATCH] primitives: release v0.10.7 --- Cargo.lock | 13 ++++++++----- Cargo.toml | 4 ---- primitives/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 712b3e30..8377f1c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5,7 +5,8 @@ version = 3 [[package]] name = "amplify" version = "4.1.1" -source = "git+https://github.com/rust-amplify/rust-amplify?branch=feat/array-reverse#cb9186baded3635bc85ce6d4b4fe512ba7201932" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3f58ae011435caa061fb64894c7b05d615321011d35dd07b53b2843a4b61933" dependencies = [ "amplify_apfloat", "amplify_derive 3.0.1", @@ -192,7 +193,7 @@ dependencies = [ [[package]] name = "bp-primitives" -version = "0.10.7" +version = "0.10.8" dependencies = [ "amplify", "commit_verify", @@ -567,8 +568,9 @@ dependencies = [ [[package]] name = "strict_encoding" -version = "2.5.0" -source = "git+https://github.com/strict-types/strict-encoding?branch=chore/amplify-4.1.0#b54ba615b3a2d32278ba8b2ad1ec207dd5d4f853" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c5667c167479cd4abf9f4e02a86fcc45b0d59cd1dbef97f341ecd31b7bcd320" dependencies = [ "amplify", "half", @@ -578,7 +580,8 @@ dependencies = [ [[package]] name = "strict_encoding_derive" version = "2.0.0" -source = "git+https://github.com/strict-types/strict-encoding?branch=chore/amplify-4.1.0#b54ba615b3a2d32278ba8b2ad1ec207dd5d4f853" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f5adae55367464f5a229bfd539682c94f870b98a220be6e61dc43f85d612e7e" dependencies = [ "amplify_syn", "heck", diff --git a/Cargo.toml b/Cargo.toml index a415f868..11fedf1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,3 @@ stl = ["strict_types", "strict_types/base64", "bp-primitives/stl", "commit_verif [package.metadata.docs.rs] features = [ "all" ] - -[patch.crates-io] -amplify = { git = "https://github.com/rust-amplify/rust-amplify", branch = "feat/array-reverse" } -strict_encoding = { git = "https://github.com/strict-types/strict-encoding", branch = "chore/amplify-4.1.0" } \ No newline at end of file diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 3b7cce05..be7f8df8 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bp-primitives" -version = "0.10.7" +version = "0.10.8" description = "Bitcoin protocol primitives library" keywords = ["lnp-bp", "smart-contracts", "bitcoin", "blockchain"] categories = ["cryptography"] @@ -19,7 +19,7 @@ name = "bc" amplify = { workspace = true } secp256k1 = { version = "0.27.0", features = ["global-context"] } strict_encoding = { workspace = true } -strict_types = { version = "1.6.0", optional = true } +strict_types = { version = "1.6.2", optional = true } commit_verify = { workspace = true } serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }