[package]
name = "trustee-api"
version = "0.1.2"
edition = "2021"
description = "REST + WebSocket API server for Trustee agent"
license = "MIT OR Apache-2.0"
authors = ["Podtan Team"]
keywords = ["api", "server", "agent"]
categories = ["command-line-utilities", "web-programming"]
[dependencies]
trustee-core = { version = "0.1.2", path = "../trustee-core" }
trustee-web = { version = "0.1.2", path = "../trustee-web" }
axum = { version = "0.8", features = ["ws"] }
axum-extra = { version = "0.10", features = ["cookie"] }
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.7", features = ["cors"] }
tower = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rustls = "0.23"
anyhow = "1.0"
mime_guess = "2"
futures = "0.3"
pep = { version = "0.4", features = ["oidc", "axum", "config"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls-webpki-roots"] }
url = "2"
time = "0.3"
urlencoding = "2.1"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = "0.3"