[package]
edition = "2024"
name = "flaga"
version = "0.1.1"
authors = ["James Hunt <jameshuntdevelopment@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Flag management engine with support for binary, hex, and enum flags, event triggering, and persistent flag schemas."
readme = "README.md"
keywords = [
"flags",
"bitflags",
"state",
"event",
"binary",
]
categories = [
"config",
"data-structures",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jameshuntt/flaga"
[features]
default = []
inner_only = []
[lib]
name = "flaga"
path = "src/lib.rs"
[dependencies.bincode]
version = "1.3.3"
[dependencies.log]
version = "0.4.26"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.12"