forked from gcarq/rusty-blockparser
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
69 lines (63 loc) · 2.06 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
[package]
name = "rusty-blockparser"
version = "0.6.1"
authors = ["gcarq <[email protected]>", "Michele Spagnuolo <[email protected]>"]
include = ["src/*", "LICENSE", "README.md", "Cargo.toml"]
description = "Multithreaded Blockchain Parser for most common Cryptocurrencies based on Bitcoin"
documentation = "https://github.com/gcarq/rusty-blockparser/blob/master/README.md"
homepage = "https://github.com/gcarq/rusty-blockparser/"
readme = "README.md"
keywords = ["Cryptocurrency", "Bitcoin", "Litecoin", "Blockchain", "Parser"]
license = "GPL-3.0"
[dependencies]
csv = ">=1.0.0-beta.5"
time = ">=0.1"
log = "~0.3"
clap = ">=2.26"
rust-crypto = ">=0.2"
rustc-serialize = ">=0.3"
byteorder = ">=1.1"
rust-base58 = ">=0.0"
seek_bufread = ">=1.2"
twox-hash = ">=1.0.1"
# 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`
rpath = false # Controls whether the compiler passes `-C rpath`
lto = false # Controls `-C lto` for binaries and staticlibs
debug-assertions = true # Controls whether debug assertions are enabled
codegen-units = 1 # Controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`
# The release profile, used for `cargo build --release`
[profile.release]
opt-level = 3
debug = true
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
# The testing profile, used for `cargo test`
[profile.test]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1
# The benchmarking profile, used for `cargo bench`
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
# The documentation profile, used for `cargo doc`
[profile.doc]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 1