wooly-vault/Cargo.toml

37 lines
946 B
TOML
Raw Normal View History

2024-09-05 15:49:56 +02:00
[package]
name = "wooly-vault"
version = "0.1.0"
edition = "2021"
publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "GPL-3-or-newer"
2024-09-05 15:51:42 +02:00
description = "Small hacking challenge for ⚒️ Rust Hackers 🦀"
2024-09-05 15:49:56 +02:00
readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/wooly-vault"
repository = "https://git.cscherr.de/PlexSheep/wooly-vault"
[dependencies]
2024-09-05 17:18:08 +02:00
anyhow = "1.0.86"
async-trait = "0.1.82"
2024-09-06 17:59:04 +02:00
clap = { version = "4.5.17", features = ["derive"] }
libpt = { version = "0.7.1", features = ["cli", "log"] }
2024-09-07 18:03:29 +02:00
minijinja = { version = "2.2.0", optional = true }
2024-09-06 19:55:16 +02:00
rand = "0.8.5"
2024-09-06 17:59:04 +02:00
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.128"
2024-09-07 18:03:29 +02:00
thiserror = "1.0.63"
2024-09-06 17:59:04 +02:00
tokio = { version = "1.40.0", features = [
"macros",
"net",
"time",
"io-util",
"rt",
"sync",
] }
2024-09-07 18:03:29 +02:00
warp = { version = "0.3.7", optional = true }
[features]
default = ["admin-interface"]
2024-09-07 18:03:29 +02:00
admin-interface = ["dep:warp", "dep:minijinja"]