2023-03-13 15:48:33 +00:00
|
|
|
[package]
|
|
|
|
name = "wish-server-rs"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
axum = { version = "0.6.11", features = ["macros"] }
|
|
|
|
miette = { version = "5.5.0", features = ["fancy"] }
|
|
|
|
once_cell = "1.17.1"
|
2023-03-13 16:28:51 +00:00
|
|
|
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "sqlite"] }
|
2023-03-13 15:48:33 +00:00
|
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
|
|
tower-http = { version = "0.4.0", features = ["trace", "cors"] }
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = "0.3.16"
|
|
|
|
webrtc = "0.7.1"
|