diff options
-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() } } |