forked from laysakura/louds-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (28 loc) · 973 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
[package]
name = "louds64-rs"
version = "0.2.1"
authors = ["TechPizza", "Sho Nakatani <[email protected]>"]
description = "LOUDS (Level-Order Unary Degree Sequence) with 64-bit indices in Rust"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/TechPizzaDev/louds-rs"
homepage = "https://github.com/TechPizzaDev/louds-rs"
keywords = ["louds", "succinct"] # up to 5 keywords, each keyword should have <= 20 chars
categories = ["compression", "data-structures"]
edition = "2021"
[lib]
name = "louds"
[dependencies]
fid64-rs = { version = "0.1", git = "https://github.com/TechPizzaDev/fid-rs.git" }
serde = { version = "1.0", features = ["derive"], optional = true }
mem_dbg = { version = "0.2", optional = true }
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
[features]
serde = ["fid64-rs/serde", "dep:serde"]
mem_dbg = ["dep:mem_dbg", "fid64-rs/mem_dbg"]
default = ["serde", "mem_dbg"]
[[bench]]
name = "bench"
harness = false