-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 733 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 733 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
[package]
name = "enum-toggles"
version = "1.2.1"
edition = "2021"
authors = ["Jxtopher"]
description = "A generic Rust library for managing toggles/flags using enums and bitvec."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jxtopher/enum-toggles-rs"
keywords = ["feature", "toggle", "enum", "bitvec", "flags"]
categories = ["data-structures", "config", "rust-patterns"]
[lib]
name = "enum_toggles"
path = "src/lib.rs"
crate-type = ["lib"]
[dependencies]
bitvec = "=1.0"
log = "=0.4"
strum = "=0.27.2"
strum_macros = "=0.27.2"
yaml-rust = "=0.4.5"
[dev-dependencies]
criterion = { version = "=0.7", features = ["html_reports"] }
once_cell = "=1.21.3"
tempfile = "=3.23"
[[bench]]
name = "bench"
harness = false