-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
63 lines (56 loc) · 1.08 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
[[example]]
name = 'basic'
path = 'examples/basic.rs'
[[example]]
name = 'hello'
path = 'examples/hello.rs'
[[bench]]
name = 'store_benchmark'
harness = false
[package]
name = 'tinkv'
version = '0.10.0'
authors = ['0xE8551CCB <noti@ifaceless.space>']
edition = '2018'
description = 'A fast and simple key-value storage engine.'
keywords = [
'database',
'key-value',
'storage',
]
categories = ['database-implementations']
license = 'MIT'
readme = 'README.md'
homepage = 'https://github.com/iFaceless/tinkv'
[dependencies]
clap = '2.33.1'
structopt = '0.3.14'
thiserror = '1.0.19'
anyhow = '1.0.31'
crc = '1.8.1'
glob = '0.3.0'
log = '0.4.8'
pretty_env_logger = '0.4.0'
impls = '1.0.3'
bincode = '1.2.1'
clap-verbosity-flag = '0.3.1'
bytefmt = '0.1.7'
lazy_static = '1.4.0'
os_info = '2.0.6'
sys-info = '0.7.0'
[dependencies.serde]
version = '1.0.111'
features = ['derive']
[dev-dependencies]
assert_cmd = '0.11.0'
predicates = '1.0.0'
tempfile = '3.1.0'
walkdir = '2.3.1'
criterion = '0.3.2'
sled = "0.32.0"
[dev-dependencies.rand]
version = '0.7'
features = [
'std',
'small_rng',
]