-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (53 loc) · 1.03 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
[package]
name = "rad"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi-escapes = "0.1.1"
anstream = "0.6.8"
base64 = "0.21.5"
bip39 = "2.0.0"
clap = { version = "4.5.28", features = ["derive"] }
const_format = "0.2.32"
default-args = "1.0.0"
hdwallet = "0.4.1"
hex = "0.4.3"
nu-ansi-term = "0.49.0"
primitive-types = "0.12.2"
qrencode = "0.14.0"
radix-common = "1.3.0"
rand = "0.7.3"
rayon = "1.8.0"
scrypto = "1.3.0"
thiserror = "1.0.50"
unindent = "0.2.3"
[dev-dependencies]
anstream = "0.6.8"
criterion = "0.5.1"
[[bin]]
name = "rad"
test = false
[[bench]]
name = "my_benchmark"
harness = false
[profile.test]
opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
lto = false
incremental = false
codegen-units = 16
rpath = false
[profile.release]
opt-level = 3
codegen-units = 1
panic = "abort"
strip = "symbols"
lto = true
debug-assertions = false
overflow-checks = false
debug = true
[profile.bench]
debug = true