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