-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 807 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
[package]
name = "rbitset"
description = "A bit set, being able to hold a fixed amount of booleans in an array of integers"
version = "0.3.6"
authors = [
"Eric Shimizu Karbstein <gr41.j4ck@gmail.com>",
"jD91mZM2 <me@krake.one>",
]
repository = "https://github.com/GrayJack/rbitset"
readme = "README.md"
license = "MIT"
categories = ["data-structures", "no-std", "algorithms", "embedded"]
keywords = ["bitset", "bitarray", "no_std", "set", "stack-allocated"]
edition = "2021"
exclude = ["/.fleet", "/.github", "/.idea", "/.vscode"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
num-traits = { version = "0.2.19", default-features = false }
serde = { version = "1.0.0", default-features = false, optional = true }
[features]
serde = ["dep:serde"]