Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Feb 26, 2024
1 parent d7e42b2 commit 01448d0
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 90 deletions.
122 changes: 63 additions & 59 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 4 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ required-features = ["stl"]
amplify = { version = "~4.6.0", features = ["rand"] }
strict_encoding = "~2.7.0-beta.1"
strict_types = "~2.7.0-beta.1"
aluvm = { version = "~0.11.0-beta.3", features = ["std"] }
commit_verify = { version = "~0.11.0-beta.3", features = ["rand", "derive"] }
single_use_seals = "~0.11.0-beta.3"
bp-core = { version = "~0.11.0-beta.3" }
aluvm = { version = "~0.11.0-beta.4", features = ["std"] }
commit_verify = { version = "~0.11.0-beta.4", features = ["rand", "derive"] }
single_use_seals = "~0.11.0-beta.4"
bp-core = { version = "~0.11.0-beta.4" }
secp256k1-zkp = { version = "0.10.1", features = ["rand", "rand-std", "global-context"] } # TODO: Update version before the release
baid58 = "~0.4.4"
mime = "~0.3.17"
Expand Down Expand Up @@ -60,11 +60,3 @@ wasm-bindgen-test = "0.3"

[package.metadata.docs.rs]
features = [ "all" ]

[patch.crates-io]
strict_types = { git = "https://github.com/strict-types/strict-types", branch = "vesper" }
commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "layouts" }
bp-consensus = { git = "https://github.com/BP-WG/bp-core", branch = "v0.11" }
bp-dbc = { git = "https://github.com/BP-WG/bp-core", branch = "v0.11" }
bp-seals = { git = "https://github.com/BP-WG/bp-core", branch = "v0.11" }
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "v0.11" }
5 changes: 3 additions & 2 deletions src/contract/fungible.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,9 @@ impl Default for RangeProof {
}

impl StrictEncode for RangeProof {
fn strict_encode<W: TypedWrite>(&self, _: W) -> io::Result<W> {
panic!("bulletproof dummies must never be stored")
fn strict_encode<W: TypedWrite>(&self, writer: W) -> io::Result<W> {
eprintln!("bulletproof dummies must never be stored");
Ok(writer)
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/stl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use crate::{

/// Strict types id for the library providing data types for RGB consensus.
pub const LIB_ID_RGB: &str =
"urn:ubideco:stl:Hzv1xPBtQfqcGYeisvS2V9DPj1VRC5WyYfME2RtmuRpu#blitz-english-eric";
"urn:ubideco:stl:2nWgjeSMhVE2mKgC7WyE5Dn8a6tZJDMoNugDWdc4vcZZ#spring-moral-almanac";

fn _rgb_core_stl() -> Result<TypeLib, CompileError> {
LibBuilder::new(libname!(LIB_NAME_RGB), tiny_bset! {
Expand Down
Loading

0 comments on commit 01448d0

Please sign in to comment.