-
Notifications
You must be signed in to change notification settings - Fork 61
/
Cargo.toml
49 lines (43 loc) · 981 Bytes
/
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
[package]
name = "parity-db"
version = "0.5.0"
authors = ["Parity Technologies <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/parity-db/"
description = "Key-value database for the blockchain"
[features]
instrumentation = []
bench = []
[dependencies]
blake2 = "0.10.4"
crc32fast = "1.2.0"
fs2 = "0.4.3"
hex = "0.4.2"
libc = "0.2"
log = "0.4.8"
lz4 = "1.24.0"
memmap2 = "0.5"
parking_lot = "0.12.0"
rand = "0.8.4"
snap = "1"
loom = { version = "0.5.1", optional = true }
siphasher = "0.3.10"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[dev-dependencies]
env_logger = { version = "0.10.0", default-features = false, features = ["auto-color", "humantime"] }
fdlimit = "0.2.1"
rand = { version = "0.8.2", features = ["small_rng"] }
tempfile = "3.2"
[profile.release]
panic = "abort"
#codegen-units = 1
#lto = "fat"
debug = true
[workspace]
members = [
".",
"admin",
]