forked from kampersanda/sucds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (26 loc) · 781 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
[package]
name = "sucds"
version = "0.8.1"
authors = ["Shunsuke Kanda (kampersanda) <[email protected]>"]
description = "Succinct data structures in Rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/sucds"
repository = "https://github.com/kampersanda/sucds"
homepage = "https://github.com/kampersanda/sucds"
keywords = ["succinct", "compression"]
categories = ["data-structures"]
edition = "2018"
rust-version = "1.61.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
num-traits = "0.2.15"
[features]
default = ["std"]
std = []
intrinsics = []
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex.html"]
[workspace]
members = ["bench"]