musixmatch-inofficial/cli/Cargo.toml
ThetaDev 5aee3fef75
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
feat: add all request TLS options
add CI pipeline
2023-05-08 17:23:52 +02:00

29 lines
918 B
TOML

[package]
name = "musixmatch-cli"
version = "0.1.0"
edition = "2021"
authors = ["ThetaDev"]
license = "MIT"
description = "Inofficial command line interface for the Musixmatch API"
keywords = ["music", "lyrics", "cli"]
[features]
default = ["rustls-tls-native-roots"]
# Reqwest TLS options
native-tls = ["musixmatch-inofficial/native-tls"]
native-tls-alpn = ["musixmatch-inofficial/native-tls-alpn"]
native-tls-vendored = ["musixmatch-inofficial/native-tls-vendored"]
rustls-tls-webpki-roots = ["musixmatch-inofficial/rustls-tls-webpki-roots"]
rustls-tls-native-roots = ["musixmatch-inofficial/rustls-tls-native-roots"]
[dependencies]
musixmatch-inofficial = { path = "../" }
tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] }
id3 = "1.3.0"
mp3-duration = "0.1.10"
clap = { version = "4.0.10", features = ["derive"] }
anyhow = "1.0.65"
rpassword = "7.0.0"
dirs = "5.0.0"
serde_json = "1.0.91"