29 lines
922 B
TOML
29 lines
922 B
TOML
[package]
|
|
name = "musixmatch-cli"
|
|
version = "0.2.0"
|
|
rust-version = "1.70.0"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
description = "Inofficial command line interface for the Musixmatch API"
|
|
|
|
[features]
|
|
default = ["native-tls"]
|
|
|
|
# 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.workspace = true
|
|
tokio = { version = "1.20.4", features = ["macros", "rt-multi-thread"] }
|
|
clap = { version = "4.0.0", features = ["derive"] }
|
|
anyhow = "1.0.0"
|
|
rpassword = "7.0.0"
|
|
dirs = "5.0.0"
|
|
serde_json = "1.0.85"
|