Files
amnezia-fellow/Cargo.toml
T

29 lines
1009 B
TOML
Raw Normal View History

2026-06-29 15:50:25 +03:00
[package]
name = "amnezia-fellow"
2026-07-06 16:57:26 +03:00
version = "1.0.0"
2026-06-29 15:50:25 +03:00
edition = "2024"
2026-07-01 13:53:03 +03:00
description = "Amnezia VPN client manager with SSO, SQLite/PostgreSQL, and Kubernetes Secret sync"
2026-06-29 15:50:25 +03:00
[dependencies]
2026-07-01 13:53:03 +03:00
async-trait = "0.1"
cot = { version = "0.6.0", default-features = false, features = ["sqlite", "postgres", "json", "openapi", "swagger-ui"] }
2026-06-29 15:50:25 +03:00
schemars = { version = "0.9", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
openidconnect = "4.0"
2026-07-01 12:44:53 +03:00
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["rt", "sync", "time"] }
2026-06-29 15:50:25 +03:00
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"
2026-06-30 18:36:53 +03:00
hex = "0.4"
hmac = "0.12"
2026-06-29 15:50:25 +03:00
kube = { version = "3.1.0", default-features = false, features = ["client", "rustls-tls", "ring"] }
k8s-openapi = { version = "0.27.1", features = ["v1_32"] }
2026-06-30 18:36:53 +03:00
sha2 = "0.10"
url = "2"