-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
48 lines (41 loc) · 1.14 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
[package]
name = "shardio"
version = "0.8.2"
authors = ["Patrick Marks <[email protected]>", "Sreenath Krishnan <[email protected]>", "Lance Hepler <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Out-of-memory sorting and streaming of large datasets"
documentation = "https://10xgenomics.github.io/rust-shardio"
repository = "https://github.com/10XGenomics/rust-shardio"
keywords = ["serde", "serialization", "map-reduce", "out-of-memory"]
readme = "README.md"
include = ["src/**/*", "LICENSE", "README.md"]
[features]
# Switch on the 'full-test' feature (in release mode), to enable
# some long-running stress-tests
full-test = []
[dependencies]
bincode = "1.3"
byteorder = "1.3.0"
lz4 = "1"
anyhow = "1"
min-max-heap = "1.2.2"
serde = { version = "1.0", features = ["derive"] }
crossbeam-channel = ">=0.4, <=0.6"
log = "^0.4"
[dev-dependencies]
tempfile = "^3.1"
criterion = "0.4"
fxhash = "0.2.1"
lazy_static = "1.2"
quickcheck = "1.0"
pretty_assertions = "1.0.0"
rand = "^0.8"
is_sorted = "0.1"
[[bench]]
name = "my_bench"
harness = false
[profile.release]
debug = true
[profile.bench]
debug = true