15 lines
472 B
TOML
15 lines
472 B
TOML
[package]
|
|
name = "album-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-stream = "0.3.5"
|
|
axum = { version = "0.6.18", features = ["tracing", "http2"] }
|
|
rspc = { version = "0.1.3", features = ["axum", "chrono"] }
|
|
tokio = "1.29.1"
|
|
tower = { version = "0.4.13", features = ["tokio", "tokio-stream"] }
|
|
tower-http = { version = "0.4.1", features = ["cors", "fs"] }
|