-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
40 lines (33 loc) · 882 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
[package]
edition = "2018"
name = "cannyls"
version = "0.10.0"
authors = ["The FrugalOS Developers"]
description = "Embedded persistent key-value storage optimized for random-access workload and huge-capacity HDD"
homepage = "https://github.com/frugalos/cannyls"
repository = "https://github.com/frugalos/cannyls"
readme = "README.md"
categories = ["database-implementations"]
license = "MIT"
[badges]
travis-ci = {repository = "frugalos/cannyls"}
[features]
default = ["futures", "fibers"]
device = ["futures", "fibers"]
[dependencies]
adler32 = "1"
byteorder = { version = "1", features = ["i128"] }
libc = "0.2"
prometrics = "0.1"
trackable = "0.2"
uuid = { version = "0.7", features = ["v4"] }
slog = "2"
[dependencies.futures]
version = "0.1"
optional = true
[dependencies.fibers]
version = "0.1"
optional = true
[dev-dependencies]
fibers_global = "0.1"
tempdir = "0.3"