Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.11.1-alpha.2 #291

Open
wants to merge 8 commits into
base: v0.11.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
move rgb resolvers implementation to rgb-std
  • Loading branch information
zoedberg committed Mar 13, 2025
commit f01571210d99800b4e407462142e18db15413580
26 changes: 13 additions & 13 deletions Cargo.lock

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

15 changes: 6 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ strict_types = "2.7.2"
commit_verify = "0.11.0-beta.9"
bp-core = "0.11.1-alpha.1"
bp-std = { version = "0.11.1-alpha.1", features = ["client-side-validation"] }
bp-electrum = "0.11.1-alpha.1"
bp-esplora = { version = "0.11.1-alpha.1", default-features = false }
bp-wallet = { version = "0.11.1-alpha.1" }
rgb-std = { version = "0.11.1-alpha.1" }
rgb-psbt = { version = "0.11.1-alpha.1", path = "psbt" }
Expand Down Expand Up @@ -62,12 +60,10 @@ crate-type = ["cdylib", "rlib"]
amplify = { workspace = true }
nonasync = { workspace = true }
baid64 = { workspace = true }
bp-electrum = { workspace = true, optional = true }
commit_verify = { workspace = true }
strict_types = { workspace = true }
bp-core = { workspace = true }
bp-std = { workspace = true }
bp-esplora = { workspace = true, optional = true }
bp-wallet = { workspace = true }
rgb-std = { workspace = true }
rgb-psbt = { workspace = true }
Expand All @@ -90,17 +86,18 @@ default = []
all = ["esplora_blocking", "electrum_blocking", "mempool_blocking", "serde", "log", "fs", "cli"]
fs = ["serde", "bp-wallet/fs", "rgb-std/fs"]
cli = ["fs", "bp-wallet/cli"]
esplora_blocking = ["bp-esplora", "bp-esplora/blocking", "bp-esplora/blocking-https"]
esplora_blocking-wasm = ["bp-esplora", "bp-esplora/blocking-wasm"]
electrum_blocking = ["bp-electrum"]
mempool_blocking = ["esplora_blocking"]
esplora_blocking = ["rgb-std/esplora_blocking"]
esplora_blocking-wasm = ["rgb-std/esplora_blocking-wasm"]
electrum_blocking = ["rgb-std/electrum_blocking"]
mempool_blocking = ["rgb-std/mempool_blocking"]
serde = ["serde_crate", "serde_yaml", "bp-std/serde", "rgb-psbt/serde"]

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

[patch.crates-io]
bp-electrum = { git = "https://github.com/zoedberg/bp-electrum-client", branch = "0.11.1-2" }
bp-electrum = { git = "https://github.com/zoedberg/bp-electrum-client", branch = "remove_bpstd" }
bp-esplora = { git = "https://github.com/zoedberg/bp-esplora-client", branch = "remove_bpstd" }
bp-wallet = { git = "https://github.com/zoedberg/bp-wallet", branch = "0.11.1-2" }
rgb-core = { git = "https://github.com/zoedberg/rgb-core", branch = "0.11.1-2" }
rgb-std = { git = "https://github.com/zoedberg/rgb-std", branch = "0.11.1-2" }
2 changes: 1 addition & 1 deletion cli/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ use bpstd::{Network, Wpkh, XpubDerivable};
use bpwallet::cli::{Args as BpArgs, Config, DescriptorOpts};
use bpwallet::Wallet;
use rgb::persistence::Stock;
use rgb::resolvers::AnyResolver;
use rgb::validation::ResolveWitness;
use rgb::{ChainNet, RgbDescr, RgbWallet, TapretKey, WalletError};
use rgbstd::indexers::AnyResolver;
use rgbstd::persistence::fs::FsBinStore;
use strict_types::encoding::{DecodeError, DeserializeError};

Expand Down
128 changes: 0 additions & 128 deletions src/indexers/any.rs

This file was deleted.

Loading