-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
124 lines (121 loc) · 3.59 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[package]
name = "rgb-tests"
version = "0.1.0"
authors = [
"Zoe Faltibà <[email protected]>",
"Dr Maxim Orlovsky <[email protected]>",
"Nicola Busanello <[email protected]>",
]
edition = "2021"
rust-version = "1.75.0"
repository = "https://github.com/RGB-WG/rgb-tests"
homepage = "https://github.com/RGB-WG/rgb-tests"
license = "Apache-2.0"
description = "RGB tests"
[dependencies]
bitcoin_hashes = "0.14.0"
file-format = { version = "0.25.0", features = ["reader"] }
once_cell = "1.19.0"
rand = "0.8.5"
rstest = "0.19.0"
rstest_reuse = "0.6.0"
serde_yaml = "0.9"
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
time = "0.3.34"
# RGB-related deps
## bp-core
bp-core = { path = "./bp-core" }
## bp-electrum-client
bp-electrum = { path = "./bp-electrum-client" }
## bp-esplora
bp-esplora = { path = "./bp-esplora-client" }
## bp-std
bp-std = { path = "./bp-std", features = ["signers"] }
descriptors = { path = "./bp-std/descriptors" }
bp-invoice = { path = "./bp-std/invoice" }
psbt = { path = "./bp-std/psbt" }
## bp-wallet
bp-wallet = { path = "./bp-wallet", features = [
"electrum",
"esplora",
"fs",
] }
## rgb
rgb-runtime = { path = "./rgb", features = [
"electrum_blocking",
"esplora_blocking",
"fs",
"serde",
] }
rgb-psbt = { path = "./rgb/psbt" }
## rgb-interfaces
rgb-interfaces = { path = "./rgb-interfaces" }
## rgb-schemata
rgb-schemata = { path = "./rgb-schemata" }
## rgb-std
rgb-std = { path = "./rgb-std", features = ["fs"] }
## rust-amplify
amplify = { path = "./rust-amplify" }
## strict-encoding
strict_encoding = { path = "./strict-encoding/rust" }
## strict-types
strict_types = { path = "./strict-types" }
[patch.crates-io]
# patching all RGB-related deps, to measure code coverage
## amplify-derive
amplify_derive = { path = "./amplify-derive" }
amplify_syn = { path = "./amplify-derive/syn" }
## amplify-nonasync
nonasync = { path = "./amplify-nonasync" }
## amplify-num
amplify_apfloat = { path = "./amplify-num/apfloat" }
amplify_num = { path = "./amplify-num/num" }
## ascii-armor
ascii-armor = { path = "./ascii-armor" }
## baid64
baid64 = { path = "./rust-baid64" }
## bp-core
bp-core = { path = "./bp-core" }
bp-consensus = { path = "./bp-core/consensus" }
bp-dbc = { path = "./bp-core/dbc" }
bp-seals = { path = "./bp-core/seals" }
## bp-electrum-client
bp-electrum = { path = "./bp-electrum-client" }
## bp-esplora-client
bp-esplora = { path = "./bp-esplora-client" }
## bp-std
bp-derive = { path = "./bp-std/derive" }
bp-std = { path = "./bp-std" }
descriptors = { path = "./bp-std/descriptors" }
bp-invoice = { path = "./bp-std/invoice" }
psbt = { path = "./bp-std/psbt" }
## bp-wallet
bp-wallet = { path = "./bp-wallet" }
## client_side_validation
commit_verify = { path = "./client_side_validation/commit_verify" }
commit_encoding_derive = { path = "./client_side_validation/commit_verify/derive" }
single_use_seals = { path = "./client_side_validation/single_use_seals" }
## rgb
rgb-runtime = { path = "./rgb" }
rgb-psbt = { path = "./rgb/psbt" }
## rgb-core
rgb-core = { path = "./rgb-core" }
## rgb-interfaces
rgb-interfaces = { path = "./rgb-interfaces" }
## rgb-schemata
rgb-schemata = { path = "./rgb-schemata" }
## rgb-std
rgb-std = { path = "./rgb-std" }
rgb-invoice = { path = "./rgb-std/invoice" }
## rust-aluvm
aluvm = { path = "./rust-aluvm" }
## rust-amplify
amplify = { path = "./rust-amplify" }
## strict-encoding
strict_encoding = { path = "./strict-encoding/rust" }
strict_encoding_derive = { path = "./strict-encoding/rust/derive" }
## strict-types
strict_types = { path = "./strict-types" }
## vesper
vesper-lang = { path = "./vesper" }