-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
34 lines (31 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
[package]
name = "bitiodine-rust"
version = "0.0.3"
authors = ["Michele Spagnuolo <[email protected]>"]
[dependencies]
arrayref = "0.3.6"
bitcoin-bech32 = "0.12.1"
byteorder = "1.4.3"
base58 = "0.2.0"
chrono = "0.4.23"
clap = {version = "4.0.26", features = ["string"]}
dirs = "4.0.0"
rust-crypto = "0.2.36"
log = "0.4.17"
env_logger = "0.9.3"
memmap = "0.7.0"
rustc-serialize = "0.3.24"
time = "0.3.17"
vec_map = "0.8.2"
void = "1.0.2"
# The development profile, used for `cargo build`
[profile.dev]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes `-g`
debug-assertions = true # Controls whether debug assertions are enabled
# The release profile, used for `cargo build --release`
[profile.release]
opt-level = 3 # Controls the --opt-level the compiler builds with
debug = false # Controls whether the compiler passes `-g`
debug-assertions = false # Controls whether debug assertions are enabled
lto = true