cvm12-rs/Cargo.toml
Lily Tsuru 37339e2580 auth: new module
a client for cvmauth (the server side bit needed to actually do the magic)! just needs a couple todos and it should be good enough for server usage later on
2024-05-10 07:09:51 -04:00

22 lines
504 B
TOML

[package]
name = "cvm12-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.37.0", features = ["full"] }
axum = { version = "0.7.5", features = ["tokio"] }
turbojpeg = { version = "1.0.1" }
vnc-rs = "0.5.1"
toml_edit = "0.22.9"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
thiserror = "1.0.58"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_repr = "0.1.19"
# Used for auth support
reqwest = { version = "0.12.4", features = ["json"] }