-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
81 lines (67 loc) · 1.5 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
[package]
name = "kekbit"
version = "0.3.5"
authors = ["motoras <motoras@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Ultralight persistent data channels"
homepage = "https://github.com/motoras/kekbit"
repository="https://github.com/motoras/kekbit"
keywords = ["data-channel", "state-replication", "transactions-journal", "ipc","system-prevalence"]
readme = "README.md"
[lib]
name = "kekbit"
path = "src/lib.rs"
[badges]
codecov = { repository = "motoras/kekbit", branch = "master", service = "github" }
build = { repository = "motoras/kekbit", branch = "master", service = "github" }
maintenance = {status = "actively-developed"}
[dependencies]
memmap = "0.7.0"
log = "0.4.8"
crossbeam-utils ="0.8.7"
parking_lot ="0.12.0"
[dev-dependencies]
tempdir = "0.3.7"
simple_logger ="2.1.0"
nix="0.23.1"
crossbeam ="0.8.1"
assert_matches="1.3.0"
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 16
panic = 'unwind'
incremental = true
overflow-checks = true
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = 'fat'
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false
[profile.test]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
codegen-units = 16
incremental = true
overflow-checks = true
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
incremental = true
overflow-checks = false