forked from continuwuation/jwt-service-rs
51 lines
1.2 KiB
TOML
51 lines
1.2 KiB
TOML
[workspace]
|
|
members = ["core"]
|
|
|
|
[package]
|
|
name = "jwt-service"
|
|
version = "0.1.2"
|
|
edition = "2024"
|
|
repository = "https://github.com/JadedBlueEyes/jwt-service-rs"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "jwt_service"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "jwt_service_cli"
|
|
path = "src/bin.rs"
|
|
|
|
[dependencies]
|
|
jwt-service-core = { path = "core" }
|
|
axum = "0.8.4"
|
|
backon = "1.6.0"
|
|
base64 = "0.22"
|
|
# color-eyre = "0.6.5"
|
|
# jsonwebtoken = "9.3.1"
|
|
livekit-api = { version = "0.4.4", features = ["rustls-tls-webpki-roots", "signal-client-tokio"] }
|
|
livekit-protocol = "0.7"
|
|
reqwest = { version = "0.13.1", features = ["json", "rustls", "hickory-dns"], default-features = false }
|
|
resolvematrix = "1"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
sha2 = "0.10"
|
|
thiserror = "2.0.12"
|
|
tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread", "signal"] }
|
|
tokio-util = "0.7.19"
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
url = "2.5.4"
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.23"
|
|
tokio = { version = "1.46.1", features = ["test-util"] }
|
|
tower = "0.5.2"
|
|
|
|
# The profile that 'dist' will build with
|
|
[profile.dist]
|
|
inherits = "release"
|
|
lto = "thin"
|
|
|
|
[package.metadata.dist]
|
|
dist = true
|