Skip to content

Commit

Permalink
Fix crate alphabetization.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoquick committed Jul 10, 2023
1 parent b6b76f7 commit 8d2fe7a
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,16 @@ argon2 = "0.5.0"
base64 = { package = "base64-compat", version = "1.0.0" }
bech32 = "0.9.1"
bip39 = { version = "2.0.0", features = ["rand"] }
zeroize = "1.6.0"
bitcoin_30 = { package = "bitcoin", version = "0.30", features = ["base64"] }
bitcoin = { version = "0.29.2", features = ["base64"] }
bitcoin_hashes = "0.12.0"
bitcoin_scripts = "0.10.0-alpha.2"
bitcoin_blockchain = "0.10.0-alpha.2"
bp-core = { version = "0.10.4", features = ["stl"] }
commit_verify = { version = "0.10.3", features = ["stl"] }
bp-seals = "0.10.4"
indexmap = "1.9.3"
commit_verify = { version = "0.10.3", features = ["stl"] }
carbonado = "0.3.1"
console_error_panic_hook = "0.1.7"
miniscript_crate = { package = "miniscript", version = "9.0.1", features = [
"compiler",
] }
descriptor-wallet = { version = "0.10.0-alpha.2", features = [
"descriptors",
"serde",
Expand All @@ -57,12 +52,17 @@ futures = { version = "0.3.28", features = [
], default-features = true }
getrandom = { version = "0.2.10", features = ["js"] }
hex = "0.4.3"
indexmap = "1.9.3"
lightning-invoice = "0.23.0"
log = "0.4.17"
miniscript_crate = { package = "miniscript", version = "9.0.1", features = [
"compiler",
] }
nostr-sdk = "0.22.0"
once_cell = "1.17.1"
payjoin = { version = "0.7.0", features = ["sender"] }
percent-encoding = "2.2.0"
postcard = { version = "1.0.4", features = ["alloc"] }
pretty_env_logger = "0.5.0"
psbt = { version = "0.10.0-alpha.2", features = [
"sign",
Expand All @@ -75,17 +75,16 @@ reqwest = { version = "0.11.18", features = ["json"] }
rgb-contracts = { version = "0.10.0-beta.2", default-features = false, features = [
"log",
] }
rgb-wallet = { version = "0.10.2" }
rgb-std = { version = "0.10.2" }

rgb-schemata = { version = "0.10.0-beta.1" }
rgb-std = { version = "0.10.2" }
rgb-wallet = { version = "0.10.2" }
serde = "1.0.152"
serde_json = "1.0.91"
postcard = { version = "1.0.4", features = ["alloc"] }
serde-encrypt = "0.7.0"
strict_types = "1.4.1"
strict_encoding = "2.4.1"
strict_types = "1.4.1"
tokio = { version = "1.28.2", features = ["macros", "sync"] }
zeroize = "1.6.0"

[target.'cfg(target_arch = "wasm32")'.dependencies]
bdk = { version = "0.28.0", features = [
Expand All @@ -101,9 +100,6 @@ wasm-bindgen-futures = "0.4.36"
web-sys = "0.3.63"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
esplora_block = { version = "0.5.0", package = "esplora-client", default-features = false, features = [
"blocking",
] }
bdk = { version = "0.28.0", features = [
"use-esplora-async",
"async-interface",
Expand All @@ -112,6 +108,9 @@ bdk = { version = "0.28.0", features = [
axum = { version = "0.6.17", features = ["headers"] }
axum-macros = "0.3.0"
deflate = "1.0.0"
esplora_block = { version = "0.5.0", package = "esplora-client", default-features = false, features = [
"blocking",
] }
inflate = "0.4.5"
tower-http = { version = "0.4.0", features = ["cors"], optional = true }

Expand Down

0 comments on commit 8d2fe7a

Please sign in to comment.