-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change from GPL-3 to MIT OR Apache-2.0 license
Upgrade Ramhorns to v1.0.0 which includes a change from GPL-3 to MPL-2. This change allows tinted-builder-rust to change from GPL-3 to MIT OR Apache-2.0
- Loading branch information
1 parent
de799b6
commit 783768b
Showing
21 changed files
with
480 additions
and
1,874 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
[package] | ||
name = "tinted-builder-rust" | ||
description = "A Tinted Theming template builder which uses yaml color schemes to generate theme files." | ||
version = "0.2.2" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "GPL-3.0" | ||
license = "MIT OR Apache-2.0" | ||
readme = "README.md" | ||
authors = ["Jamy Golden <[email protected]>", "Tinted Theming <[email protected]>"] | ||
homepage = "https://github.com/tinted-theming/tinted-builder-rust" | ||
repository = "https://github.com/tinted-theming/tinted-builder-rust" | ||
keywords = ["cli", "base16", "base24", "tinted-theming"] | ||
categories = ["command-line-utilities", "library", "serialization"] | ||
categories = ["command-line-utilities", "template-engine"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.80" | ||
clap = "4.5.2" | ||
dirs = "5.0.1" | ||
ramhorns = "0.14.0" | ||
ramhorns = "1.0.0" | ||
serde = { version = "1.0.197", features = ["derive"] } | ||
serde_yaml = "0.9.32" | ||
unicode-normalization = "0.1.23" | ||
|
Oops, something went wrong.