12 lines
360 B
TOML
12 lines
360 B
TOML
[package]
|
|
name = "turn-api"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = {version = "0.7.5", default-features = false, features = ["http1", "json", "query", "tokio"]}
|
|
tokio = {version = "1.37.0", features = ["macros", "rt-multi-thread"]}
|
|
ring = "0.17.8"
|
|
serde = {version = "1.0.202", features = ["derive"]}
|
|
base64 = "0.22.1"
|
|
lazy_static = "1.4.0"
|