diff options
author | Vika <vika@fireburn.ru> | 2024-08-25 20:53:13 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-25 20:55:09 +0300 |
commit | b0730f9afe4213aa8a4d20bf56a56a27870a90bf (patch) | |
tree | 0030bb54269684036442ddaf6fc72d987b3ee25a | |
parent | 9dba6930f06371dc9feb3d2c06ef8c7d712326d7 (diff) | |
download | bowl-b0730f9afe4213aa8a4d20bf56a56a27870a90bf.tar.zst |
Add license
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 8d581ff..1ef4990 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,8 @@ [package] name = "bowl" version = "0.1.0" +authors = ["Vika <vika@fireburn.ru>"] +license = "AGPL-3.0-only" edition = "2021" [dependencies] diff --git a/src/lib.rs b/src/lib.rs index 751a3ea..f684847 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -132,6 +132,8 @@ impl App { .version(env!("CARGO_PKG_VERSION")) .website("https://kittybox.fireburn.ru/bowl/") .developers(vec!["Vika https://fireburn.ru"]) + .license_type(gtk::License::Agpl30Only) + .copyright("© 2024 Vika Shleina") .build() } } |