[package] name = "bok-utils" version = "0.1.0" edition = "2021" authors = ["Luca Fulchir "] homepage = "https://git.runesauth.com/RunesAuth/bok" repository = "https://git.runesauth.com/RunesAuth/bok" license = "Apache-2.0 WITH LLVM-exception" keywords = [ "bok" ] categories = [ "config" ] [[example]] name = "repos" crate-type = ["lib"] path = "examples/repos/lib.rs" [dependencies] clap = { version = "4.5", features = [ "derive", "unicode" ]} bok = { path = "../bok" } bok-macro = { path = "../bok-macro" } macro_magic = { version = "0.5" } prettyplease = "0.2" proc-macro2 = "1.0" quote = "1.0" slog = { version = "2.7", features = ["max_level_trace", "release_max_level_debug"] } slog-term = { version = "2.9" } slog-async = { version = "2.8" } strum = { version = "0.26", features = [ "derive" ] } syn = { version = "2", features = [ "full", "parsing", "extra-traits" ] } sha3 = { version = "0.10" }