2024-03-31 18:24:42 +02:00
|
|
|
[package]
|
|
|
|
name = "turn-api"
|
|
|
|
version = "0.0.1"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-31 18:39:41 +02:00
|
|
|
axum = {version = "0.7.5", default-features = false, features = ["http1", "json", "query", "tokio"]}
|
2024-06-28 09:19:25 +02:00
|
|
|
tokio = {version = "1.38.0", features = ["macros", "rt-multi-thread"]}
|
2024-03-31 18:39:41 +02:00
|
|
|
ring = "0.17.8"
|
2024-06-28 09:19:25 +02:00
|
|
|
serde = {version = "1.0.203", features = ["derive"]}
|
2024-05-20 17:39:07 +02:00
|
|
|
base64 = "0.22.1"
|
2024-06-28 09:19:25 +02:00
|
|
|
lazy_static = "1.5.0"
|