-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (32 loc) · 853 Bytes
/
Cargo.toml
File metadata and controls
42 lines (32 loc) · 853 Bytes
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
[package]
name = "cbitmap"
version = "0.3.2"
edition = "2021"
license = "MIT"
description = "A conventional, compact and core (no_std) bitmap."
readme = "README.md"
authors = ["Halifuda"]
keywords = ["bitmap", "bitset", "bitarray"]
categories = ["no-std"]
repository = "https://github.com/Halifuda/cbitmap"
documentation = "https://docs.rs/cbitmap"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
bench = false # ignoring libtest check, so criterion cmd options can be used.
[dependencies]
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[features]
default = ["alloc"]
alloc = []
[[example]]
name = "bitmap-base"
[[example]]
name = "bitmap-usecase"
[[test]]
name = "bitmap-base"
[[test]]
name = "bitmap-panic"
[[bench]]
name = "bitmap-base"
harness = false