-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
55 lines (44 loc) · 1.07 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "modular-bitfield"
version = "0.11.2"
edition = "2018"
authors = ["Robin Freyler <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/robbepop/modular-bitfield"
documentation = "https://docs.rs/modular-bitfield"
description = "Allows to easily define bitfield types with modular building blocks."
categories = ["data-structures", "no-std"]
keywords = ["bitfield", "bit", "bitfields"]
autotests = false
[dev-dependencies]
trybuild = "1.0"
criterion = "0.3"
bitfield = "0.13"
[[test]]
name = "tests"
path = "tests/progress.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[[bench]]
name = "cmp_handwritten"
path = "benches/cmp_handwritten.rs"
harness = false
[[bench]]
name = "cmp_bitfield_crate"
path = "benches/cmp_bitfield_crate.rs"
harness = false
[[bin]]
name = "playground"
path = "playground.rs"
[dependencies]
modular-bitfield-impl = { path = "impl", version = "0.11.2" }
static_assertions = "1.1"
[profile.bench]
codegen-units = 1
[workspace]
members = [
"impl"
]