generated from al8n/template-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
64 lines (53 loc) · 1.56 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
[package]
name = "valog"
version = "0.2.1"
edition = "2021"
repository = "https://github.com/al8n/valog"
homepage = "https://github.com/al8n/valog"
documentation = "https://docs.rs/valog"
description = "A lock-free, generic, lightweight value log."
license = "MIT OR Apache-2.0"
rust-version = "1.81.0"
categories = ["data-structures", "database-implementations", "development-tools"]
keywords = ["value-log", "wisckey", "bitcask", "database", "valuelog"]
[[bench]]
path = "benches/foo.rs"
name = "foo"
harness = false
[[example]]
path = "examples/concurrent_rw.rs"
name = "concurrent_rw"
required-features = ["memmap"]
[features]
default = ["memmap", "rarena-allocator/default", "dbutils/default"]
alloc = ["rarena-allocator/alloc", "dbutils/alloc"]
std = ["rarena-allocator/std", "dbutils/std"]
memmap = ["std", "rarena-allocator/memmap"]
xxhash64 = ["dbutils/xxhash64"]
xxhash3 = ["dbutils/xxhash3"]
tracing = ["dbutils/tracing"]
[dependencies]
dbutils = { version = "0.9", default-features = false, features = ["crc32fast"] }
rarena-allocator = { version = "0.4", default-features = false }
viewit = "0.1.5"
[dev-dependencies]
criterion = "0.5"
crossbeam-channel = "0.5"
tempfile = "3"
paste = "1"
wg = { version = "0.9", default-features = false, features = ["std"] }
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints.rust]
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"