mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
30 lines
736 B
TOML
30 lines
736 B
TOML
[package]
|
|
name = "unshell-server"
|
|
# version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = []
|
|
log = ["unshell/log", "unshell-manager/log"]
|
|
log_debug = ["log", "unshell/log_debug", "unshell-manager/log_debug"]
|
|
|
|
[dependencies]
|
|
unshell = { path = "../" }
|
|
unshell-manager = { path = "../unshell-manager" }
|
|
|
|
chrono = { workspace = true }
|
|
toml = { workspace = true }
|
|
static_init = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
sled = "0.34.7"
|
|
|
|
clap = {version = "4.5.53", features = ["derive"]}
|
|
axum = "0.8.7"
|
|
axum-extra = {version="0.12.2", features = ["typed-header"]}
|
|
tokio = {version="1.48.0", features = ["full"] }
|
|
|
|
jsonwebtoken = {version = "10.2.0", features = ["aws_lc_rs"]}
|
|
bcrypt = "0.17.1"
|