[package]
edition = "2024"
rust-version = "1.94"
name = "lyrid"
version = "0.4.0"
authors = ["Kirill Lakhtachev <lahtachev@gmail.com>"]
build = false
exclude = [
"docs/",
"web/",
".github/",
"cliff.toml",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A music universe: a canonical sky of artists and genres you explore through real listening"
homepage = "https://github.com/lacodda/lyrid"
readme = "README.md"
keywords = [
"music",
"discovery",
"graph",
"exploration",
]
categories = ["multimedia"]
license = "MIT"
repository = "https://github.com/lacodda/lyrid"
[[bin]]
name = "lyrid"
path = "src/main.rs"
[[test]]
name = "release_consistency"
path = "tests/release_consistency.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.axum]
version = "0.8.9"
[dependencies.bzip2]
version = "0.6.1"
[dependencies.clap]
version = "4.6.6"
features = ["derive"]
[dependencies.dotenvy]
version = "0.15.7"
[dependencies.flate2]
version = "1.1"
[dependencies.quick-xml]
version = "0.41"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.sqlx]
version = "0.9"
features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"migrate",
"uuid",
]
[dependencies.tar]
version = "0.4.46"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dependencies.tower-http]
version = "0.7.0"
features = ["trace"]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dependencies.uuid]
version = "1.24.0"
[dev-dependencies.http-body-util]
version = "0.1.5"
[dev-dependencies.tower]
version = "0.5.3"
features = ["util"]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"