forked from bihelix-io/bihelix-rgb-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (73 loc) · 2.31 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[workspace]
members = [
".",
]
[workspace.package]
version = "0.11.0-beta.3"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts"]
categories = ["cryptography::cryptocurrencies"]
authors = ["xxx <[email protected]>"]
homepage = "https://github.com/xxx"
repository = "https://github.com/xx/xx"
rust-version = "1.67" # Due to strict encoding library
edition = "2021"
license = "Apache-2.0"
[package]
name = "bihelix-rgb-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { workspace = true }
amplify = { workspace = true }
baid58 = { workspace = true }
strict_types = { workspace = true, features = ["serde"] }
commit_verify = { workspace = true }
bp-seals = { workspace = true }
bp-std = { workspace = true, features = ["serde"] }
bp-core = { workspace = true }
rgb-std = { workspace = true, features = ["serde"] }
rgb-runtime = { version = "0.11.0-beta.1", features = ["all"] }
log = { workspace = true }
env_logger = "0.10.1"
clap = { version = "4.4.8", features = ["derive", "env"] }
shellexpand = "3.1.0"
serde_crate = { workspace = true }
serde_yaml = { workspace = true }
serde_json = "1.0.108"
toml = "0.8.8"
bitcoin = "0.31.1"
rgb-psbt = { workspace = true }
rgb-core = { workspace = true }
descriptors = { workspace = true }
bdk = { workspace = true }
base64 = { workspace = true }
rgb-persist-fs ={ workspace = true }
dirs-next = "2.0.0"
rgb-schemata = { workspace = true }
rand = { workspace = true }
[workspace.dependencies]
rgb-schemata = "0.11.0-beta.4"
rgb-persist-fs = { version = "0.11.0" }
base64 = "0.13.0"
bdk = { version = "0.29", features = ["electrum", "keys-bip39"] }
rgb-core = "0.11.0-beta.4"
anyhow = "1.0"
amplify = "4.5.0"
baid58 = "0.4.4"
bitcoin = "0.31.1"
commit_verify = "0.11.0-beta.3"
strict_types = "1.6.3"
bp-core = "0.11.0-beta.3"
bp-seals = "0.11.0-beta.3"
bp-std = "0.11.0-beta.3"
descriptors = "0.11.0-beta.3"
psbt = { version = "0.11.0-beta.3", features = ["all"] }
rgb-std = { version = "0.11.0-beta.4", features = ["fs"] }
rgb-psbt = { version = "0.11.0-beta.3" }
serde_crate = { package = "serde", version = "1", features = ["derive"] }
serde_yaml = "0.9.19"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
rand = "0.8.5"
[profile.release]
strip = "symbols"