Compare commits

..

2 commits

Author SHA1 Message Date
9faa2cd6b8
chore(release): release musixmatch-inofficial v0.1.0
All checks were successful
CI / Test (push) Successful in 50s
Release / Release (push) Successful in 53s
2024-03-23 02:48:48 +01:00
053702c2f5
fix: move package attributes to workspace 2024-03-23 02:48:27 +01:00
2 changed files with 19 additions and 8 deletions

View file

@ -1,17 +1,27 @@
[package] [package]
name = "musixmatch-inofficial" name = "musixmatch-inofficial"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition.workspace = true
authors = ["ThetaDev <t.testboy@gmail.com>"] authors.workspace = true
license = "MIT" license.workspace = true
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 }

View file

@ -1,11 +1,12 @@
[package] [package]
name = "musixmatch-cli" name = "musixmatch-cli"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition.workspace = true
authors = ["ThetaDev"] authors.workspace = true
license = "MIT" license.workspace = true
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"]