Files
unshell/unshell-server/Cargo.toml
T

32 lines
803 B
TOML
Raw Normal View History

2025-11-28 18:39:14 -07:00
[package]
name = "unshell-server"
2026-01-30 14:05:07 -07:00
version.workspace = true
edition.workspace = true
authors.workspace = true
include.workspace = true
2025-11-28 18:39:14 -07:00
2025-11-29 13:15:09 -07:00
[features]
default = ["log_debug"]
2026-01-26 09:13:46 -07:00
log = ["unshell/log", "unshell-manager/log"]
log_debug = ["unshell/log_debug", "unshell-manager/log_debug"]
2025-11-29 13:15:09 -07:00
2025-11-28 18:39:14 -07:00
[dependencies]
2026-01-26 09:47:40 -07:00
unshell = { path = "../" }
unshell-manager = { path = "../unshell-manager" }
2025-11-29 13:15:09 -07:00
2026-01-26 09:13:46 -07:00
chrono = { workspace = true }
toml = { workspace = true }
static_init = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sled = "0.34.7"
2025-12-21 17:58:04 -07:00
clap = {version = "4.5.53", features = ["derive"]}
2025-11-28 18:39:14 -07:00
axum = "0.8.7"
axum-extra = {version="0.12.2", features = ["typed-header"]}
2025-12-21 17:58:04 -07:00
tokio = {version="1.48.0", features = ["full"] }
jsonwebtoken = {version = "10.2.0", features = ["aws_lc_rs"]}
bcrypt = "0.17.1"