Files
librespot-auth/Cargo.toml
Dominic Pearson ef2e5f848d static musl build configuration
cargo build --profile static --target x86_64-unknown-linux-musl
2024-08-17 19:45:47 +02:00

23 lines
570 B
TOML

[package]
name = "librespot-auth"
version = "0.1.0"
edition = "2021"
[dependencies]
futures = "0.3"
librespot-core = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
librespot-discovery = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
sha1 = "0.10.5"
hex = "0.4.3"
log = "0.4"
clap = { version = "4.0", features = ["derive"] }
[profile.static]
inherits = "release"
panic = "abort"
lto = true
strip = true