[package] name = "wooly-vault" version = "0.1.0" edition = "2021" publish = false authors = ["Christoph J. Scherr "] license = "GPL-3-or-newer" description = "Small hacking challenge for ⚒️ Rust Hackers 🦀" readme = "README.md" homepage = "https://git.cscherr.de/PlexSheep/wooly-vault" repository = "https://git.cscherr.de/PlexSheep/wooly-vault" [dependencies] anyhow = "1.0.86" async-trait = "0.1.82" clap = { version = "4.5.17", features = ["derive"] } libpt = { version = "0.7.1", features = ["cli", "log"] } minijinja = { version = "2.2.0", optional = true } rand = "0.8.5" serde = { version = "1.0.209", features = ["derive"] } serde_json = "1.0.128" thiserror = "1.0.63" tokio = { version = "1.40.0", features = [ "macros", "net", "time", "io-util", "rt", "sync", ] } warp = { version = "0.3.7", optional = true } [features] default = ["admin-interface"] admin-interface = ["dep:warp", "dep:minijinja"]