[package] name = "unm_rest_api" description = "The RESTful API that can deal with UnblockNeteaseMusic API." version = "0.4.0" edition = "2021" license = "LGPL-3.0-or-later" repository = "https://github.com/UnblockNeteaseMusic/server-rust" readme = "./README.md" include = ["src/**/*", "README.md", "docs/api.md", "docs/configure.md"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.68" axum = "0.6.2" bytes = "1.3.0" futures = "0.3.25" http = "0.2.8" mimalloc = "0.1.34" once_cell = "1.17.0" reqwest = { version = "0.11.14", features = ["native-tls-vendored", "gzip", "deflate", "brotli", "stream"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.91" thiserror = "1.0.38" tokio = { version = "1.24.2", features = ["full"] } toml = "0.5.11" tower = { version = "0.4.13", features = ["buffer", "limit", "load-shed"] } tower-http = { version = "0.3.5", features = ["cors"] } tracing = "0.1.37" tracing-subscriber = "0.3.16" unm_api_utils = { version = "0.4.0", path = "../api-utils" } unm_engine = { version = "0.4.0", path = "../engine-base" } unm_engine_bilibili = { version = "0.4.0", path = "../engines/bilibili" } unm_types = { version = "0.4.0", path = "../types" } url = "2.3.1"