13 lines
360 B
TOML
13 lines
360 B
TOML
|
[package]
|
||
|
name = "turn-api"
|
||
|
version = "0.0.1"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
axum = {version = "0.7.4", default-features = false, features = ["http1", "json", "query", "tokio"]}
|
||
|
tokio = {version = "1.36.0", features = ["macros", "rt-multi-thread"]}
|
||
|
ring = "0.17.7"
|
||
|
serde = {version = "1.0.196", features = ["derive"]}
|
||
|
base64 = "0.21.7"
|
||
|
lazy_static = "1.4.0"
|