-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
109 lines (94 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[package]
name = "rdms"
version = "0.0.1"
authors = ["prataprc <prataprc@gmail.com>"]
description = "Composable storage for key,value index"
documentation = "https://docs.rs/rdms"
homepage = "https://github.com/bnclabs/rdms"
repository = "https://github.com/bnclabs/rdms"
keywords = ["storage", "mvcc", "llrb", "btree", "lsm"]
categories = ["data-structures", "database"]
license = "AGPL-3.0"
exclude = ["template/**", "docs/**"]
readme = "README.md"
edition = "2018"
[lib]
name = "rdms"
path = "src/lib.rs"
[[bin]]
name = "rdms"
required-features = ["rdms"]
[[bin]]
name = "pms"
required-features = ["pms"]
[[bin]]
name = "crio"
required-features = ["crio"]
[[bin]]
name = "zimf"
required-features = ["zimf"]
[[bin]]
name = "html"
required-features = ["html"]
[[bin]]
name = "nltk"
required-features = ["nltk"]
[[bin]]
name = "diskio"
required-features = ["diskio"]
[badges]
maintenance = { status = "actively-developed" }
travis-ci = { repository = "bnclabs/rdms" }
[dependencies]
xorfilter-rs = { path = "../xorfilter", features = ["cbordata"] }
cbordata = { version = "0.6.0" }
cmap = { path = "../cmap", version = "0.3.0" }
arbitrary = { version = "1", features = ["derive"] }
toml = "0.5.8"
lazy_static = "1.4.0"
fs2 = "0.4.3"
croaring = "0.5.1"
cityhash-rs = "1.0.0"
git2 = "0.13.20"
serde = { version = "1", features = ["derive"] }
chrono = "0.4.19"
binread = "2.2.0"
uuid = "0.8.2"
rand = { version = "0.8.4", features = ["std_rng"] }
xz2 = "0.1.6"
zstd = "0.9.0"
regex = "1.5.4"
num_cpus = "1.13.1"
rayon = "1.5.1"
dirs = "4.0.0"
sys-info = "0.9.1"
url = { version = "2.2.2", features = ["serde"] }
structopt = { version = "0.3.20", default-features = false, optional = true }
lmdb = { version = "0.8.0", optional = true }
csv = { version = "1.1", optional = true }
ureq = { version = "2.3", optional = true }
tar = { version = "0.4", optional = true }
flate2 = { version = "1.0", optional = true }
sha-1 = { version = "0.9.8", optional = true }
serde_json = { version = "1.0.70", optional = true }
scraper = { version = "0.12.0", optional = true }
colored = { version = "2.0.0", optional = true }
prettytable-rs = { version = "0.8.0", optional = true }
plotters = { version = "0.3.1", optional = true }
# jsondata = { path = "../jsondata", optional = true }
# log = "0.4.8"
# memmap = "0.7.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.3.2"
[dev-dependencies]
crc = "2.1.0"
ppom = { path = "../ppom", version = "0.7.0", features = ["rand"] }
[features]
rdms = ["structopt", "prettytable-rs", "lmdb", "sha-1"]
pms = ["structopt", "prettytable-rs", "colored"]
crio = ["structopt", "prettytable-rs", "csv", "ureq", "tar", "flate2", "serde_json"]
zimf = ["structopt", "prettytable-rs"]
html = ["structopt", "prettytable-rs"]
nltk = ["structopt", "prettytable-rs"]
diskio = ["structopt", "plotters"]
debug = []