29 lines
1009 B
TOML
29 lines
1009 B
TOML
[package]
|
|
name = "amnezia-fellow"
|
|
version = "0.1.8"
|
|
edition = "2024"
|
|
description = "Amnezia VPN client manager with SSO, SQLite/PostgreSQL, and Kubernetes Secret sync"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
cot = { version = "0.6.0", default-features = false, features = ["sqlite", "postgres", "json", "openapi", "swagger-ui"] }
|
|
schemars = { version = "0.9", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
openidconnect = "4.0"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
tokio = { version = "1", features = ["rt", "sync", "time"] }
|
|
base64 = "0.22"
|
|
miniz_oxide = "0.8"
|
|
qrcode = "0.14"
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
curve25519-dalek = "4.1"
|
|
getrandom = "0.3"
|
|
hex = "0.4"
|
|
hmac = "0.12"
|
|
kube = { version = "3.1.0", default-features = false, features = ["client", "rustls-tls", "ring"] }
|
|
k8s-openapi = { version = "0.27.1", features = ["v1_32"] }
|
|
sha2 = "0.10"
|
|
url = "2"
|