-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
30 lines (26 loc) · 849 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
[package]
name = "louds-rs"
version = "0.7.0"
authors = ["Sho Nakatani <[email protected]>"]
description = "High performance LOUDS (Level-Order Unary Degree Sequence) library"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/laysakura/louds-rs"
homepage = "https://github.com/laysakura/louds-rs"
keywords = ["louds", "succinct"] # up to 5 keywords, each keyword should have <= 20 chars
categories = ["compression", "data-structures"]
edition = "2018"
[dependencies]
fid-rs = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
mem_dbg = {version = "0.1.4", optional = true}
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
[features]
serde = ["fid-rs/serde", "dep:serde"]
rayon = ["fid-rs/rayon"]
mem_dbg = ["dep:mem_dbg", "fid-rs/mem_dbg"]
[[bench]]
name = "bench"
harness = false