Compare commits
1 commit
9faa2cd6b8
...
3333342926
Author | SHA1 | Date | |
---|---|---|---|
3333342926 |
2 changed files with 8 additions and 19 deletions
18
Cargo.toml
18
Cargo.toml
|
@ -1,27 +1,17 @@
|
||||||
[package]
|
[package]
|
||||||
name = "musixmatch-inofficial"
|
name = "musixmatch-inofficial"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition.workspace = true
|
edition = "2021"
|
||||||
authors.workspace = true
|
authors = ["ThetaDev <t.testboy@gmail.com>"]
|
||||||
license.workspace = true
|
license = "MIT"
|
||||||
repository.workspace = true
|
|
||||||
keywords.workspace = true
|
|
||||||
description = "Inofficial client for the Musixmatch API"
|
description = "Inofficial client for the Musixmatch API"
|
||||||
|
keywords = ["music", "lyrics"]
|
||||||
|
|
||||||
include = ["/src", "README.md", "LICENSE"]
|
include = ["/src", "README.md", "LICENSE"]
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [".", "cli"]
|
members = [".", "cli"]
|
||||||
|
|
||||||
[workspace.package]
|
|
||||||
edition = "2021"
|
|
||||||
authors = ["ThetaDev <t.testboy@gmail.com>"]
|
|
||||||
license = "MIT"
|
|
||||||
repository = "https://code.thetadev.de/ThetaDev/musixmatch-inofficial"
|
|
||||||
keywords = ["music", "lyrics"]
|
|
||||||
categories = ["api-bindings", "multimedia"]
|
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
musixmatch-inofficial = { version = "0.1.0", path = ".", default-features = false }
|
musixmatch-inofficial = { version = "0.1.0", path = ".", default-features = false }
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "musixmatch-cli"
|
name = "musixmatch-cli"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition.workspace = true
|
edition = "2021"
|
||||||
authors.workspace = true
|
authors = ["ThetaDev"]
|
||||||
license.workspace = true
|
license = "MIT"
|
||||||
repository.workspace = true
|
|
||||||
keywords.workspace = true
|
|
||||||
description = "Inofficial command line interface for the Musixmatch API"
|
description = "Inofficial command line interface for the Musixmatch API"
|
||||||
|
keywords = ["music", "lyrics", "cli"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["rustls-tls-native-roots"]
|
default = ["rustls-tls-native-roots"]
|
||||||
|
|
Loading…
Reference in a new issue