-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
94 lines (81 loc) · 2.55 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
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
members = [
".",
]
[workspace.package]
version = "0.11.0-beta.9"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts"]
categories = ["cryptography::cryptocurrencies"]
authors = ["Jack Choi <[email protected]>"]
homepage = "https://github.com/bihelix-io"
repository = "https://github.com/bihelix-io/bihelix-rgb-cli.git"
rust-version = "1.78" # 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 }
strict_types = { workspace = true, features = ["serde"] }
commit_verify = { workspace = true }
bp-core = { workspace = true }
rgb-std = { workspace = true }
log = { workspace = true }
env_logger = "0.10.1"
serde_yaml = { workspace = true }
serde_json = "1.0.108"
toml = "0.8.8"
rgb-psbt = { workspace = true }
base64 = { workspace = true }
rgb-schemata = { workspace = true }
rand = { workspace = true }
bp-seals ={ workspace = true }
rgb-interfaces = { workspace = true }
rocksdb = { workspace = true }
rgb-core = { workspace = true }
bp-std = { workspace = true }
bp-electrum= { workspace = true }
strict_encoding= { workspace = true }
rgb-runtime = { workspace = true }
serde ={ workspace = true }
axum = { workspace = true }
axum-extra = { workspace = true }
axum-macros = { workspace = true }
tokio = { workspace = true }
tower-http = { workspace = true }
clap = { workspace = true }
[workspace.dependencies]
clap = {version="4.5.20", features = ["derive"]}
tower-http = { version = "0.6.1", features = ["cors"] }
serde = "1.0"
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7.5", features = ["multipart"] }
axum-extra = "0.9.3"
axum-macros = "0.4.1"
bp-electrum = "0.11.0-beta.9"
bp-std = "0.11.0-beta.9"
rgb-core = "0.11.0-beta.9"
rgb-runtime = { version = "0.11.0-beta.9", features=['electrum_blocking']}
rgb-schemata = "0.11.0-beta.9"
base64 = "0.13.0"
anyhow = "1.0"
amplify = "4.7.0"
baid64 = "0.2.2"
commit_verify = { version = "0.11.0-beta.9", features = ["stl"] }
strict_encoding = "2.7.0"
strict_types = "2.7.2"
bp-core = "0.11.0-beta.9"
bp-seals = "0.11.0-beta.9"
rgb-std = { version = "0.11.0-beta.9", features = ['serde']}
rgb-interfaces = "0.11.0-beta.9"
rgb-psbt = { version = "0.11.0-beta.9" }
serde_yaml = "0.9.19"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
rand = "0.8.5"
rocksdb = "0.22.0"
# [profile.release]
# strip = "symbols"