20 lines
651 B
TOML
20 lines
651 B
TOML
[package]
|
|
name = "befehlswerk"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "PowerShell Scripts for EVERYONE!"
|
|
repository = "https://git.itsscb.de/itsscb/BefehlsWerk"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8.4", features = ["ws"] }
|
|
chrono = "0.4.41"
|
|
futures = "0.3.31"
|
|
serde = { version = "1.0.219", features = ["derive", "rc"] }
|
|
serde_json = "1.0.140"
|
|
sqlx = { version = "0.8.5", features = ["macros", "runtime-tokio", "sqlite", "uuid"] }
|
|
tokio = { version = "1.44.2", features = ["full"] }
|
|
tower = "0.5.2"
|
|
tracing = { version = "0.1.41", features = ["async-await"] }
|
|
tracing-subscriber = "0.3.19"
|
|
uuid = { version = "1.16.0", features = ["v4"] }
|