spotify-adblock/Cargo.toml

23 lines
360 B
TOML
Raw Normal View History

2021-04-29 14:05:41 -04:00
[package]
name = "spotify-adblock"
version = "1.0.0"
authors = ["abba23"]
description = "Adblocker for Spotify"
edition = "2018"
[dependencies]
lazy_static = "*"
libc = "*"
redhook = "*"
regex = "*"
2021-04-30 08:25:09 -04:00
serde = { version = "*", features = ["derive"] }
toml = "*"
2021-04-29 14:05:41 -04:00
[lib]
name = "spotifyadblock"
crate_type = ["dylib"]
[profile.release]
lto = true
panic = "abort"