-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (25 loc) · 953 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
[package]
authors = ["Eric Evans (CireSnave@gmail.com)"]
categories = ["data-structures", "encoding", "no-std", "parsing"]
description = "An easy to use bit manipulation library for Rust"
documentation = "https://github.com/ciresnave/bitman"
edition = "2021"
homepage = "https://github.com/ciresnave/bitman"
keywords = ["bitfield", "bit", "bits", "byte", "binary"]
license = "MIT"
name = "bitman"
readme = "README.md"
repository = "https://github.com/ciresnave/bitman"
rust-version = "1.61"
version = "2.0.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
codegen-units = 1
lto = "fat"
[dependencies]
libc-print = "0.1.21"
num-traits = "0.2.16"
[dev-dependencies]
criterion = "0.5.1"
flamegraph = "0.6.3"
proptest = "1.2.0"