forked from RGB-WG/rgb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (89 loc) · 2.72 KB
/
Cargo.toml
File metadata and controls
98 lines (89 loc) · 2.72 KB
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
95
96
97
98
[workspace]
members = [".", "psbt", "cli"]
default-members = [".", "psbt"]
[workspace.package]
version = "0.12.0-rc.1.1"
keywords = ["bitcoin", "lightning", "rgb", "smart-contracts", "lnp-bp"]
categories = ["cryptography::cryptocurrencies"]
authors = ["Dr Maxim Orlovsky <orlovsky@lnp-bp.org>"]
homepage = "https://rgb.tech"
repository = "https://github.com/RGB-WG/rgb"
rust-version = "1.85.0"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
amplify = "4.9.0"
nonasync = "0.1.2"
strict_encoding = "2.9.1"
strict_types = "2.9.0"
commit_verify = "0.12.0-rc.1"
bp-core = "0.12.0-rc.1"
bp-std = { version = "0.12.0-rc.1", features = ["client-side-validation"] }
bp-electrum = "0.12.0-rc.1"
bp-esplora = { version = "0.12.0-rc.1", default-features = false, features = ["blocking-https"] }
bp-wallet = { version = "0.12.0-rc.1" }
rgb-std = { version = "0.12.0-rc.1" }
rgb-runtime = { version = "0.12.0-rc.1", path = "." }
rgb-psbt = { version = "0.12.0-rc.1", path = "psbt" }
indexmap = "2.9.0"
chrono = { version = "0.4.41", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.19"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_debug"] }
[package]
name = "rgb-runtime"
description = "RGB smart contracts wallet runtime"
version.workspace = true
keywords.workspace = true
categories.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
edition.workspace = true
license.workspace = true
readme = "README.md"
[lib]
name = "rgbp"
crate-type = ["cdylib", "rlib"]
[dependencies]
amplify = { workspace = true }
commit_verify = { workspace = true }
strict_types = { workspace = true }
nonasync = { workspace = true }
bp-std = { workspace = true }
bp-wallet = { workspace = true }
rgb-std = { workspace = true, features = ["bitcoin"] }
rgb-psbt = { workspace = true, features = ["bp"] }
indexmap = { workspace = true }
chrono = { workspace = true }
serde = { workspace = true, optional = true }
serde_yaml = { workspace = true, optional = true }
log = { workspace = true, optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
rand = { version = "0.9.1", optional = true }
getrandom = { version = "0.3", features = ["wasm_js"] }
getrandom2 = { package = "getrandom", version = "0.2", features = ["js"] }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[features]
default = ["std"]
all = [
"std",
"serde", "log", "fs",
]
std = []
fs = [
"std",
"serde",
"rgb-std/fs",
"bp-wallet/fs",
]
log = ["dep:log", "bp-wallet/log"]
serde = [
"dep:serde", "serde_yaml",
"bp-std/serde", "rgb-std/serde"
]
[package.metadata.docs.rs]
features = ["all"]