From: Scott Worley Date: Thu, 24 Nov 2022 01:42:48 +0000 (-0800) Subject: Add license, README, and Changelog X-Git-Tag: v0.2.6~1 X-Git-Url: http://git.scottworley.com/voter/commitdiff_plain/302f399bb8f0e505bea7b5dad7b0b5b799218240?hp=8d3ba641d0401262c5f583464cf3c90915fd2e2a Add license, README, and Changelog --- diff --git a/Cargo.toml b/Cargo.toml index 27f6bd6..a755948 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ version = "0.2.5" edition = "2021" authors = ["Scott Worley "] description = "A simple web page that tracks votes" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +license = "AGPL-3.0" +repository = "https://git.scottworley.com/voter" [dependencies] cgi = "0.6.1-rc1" diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..ade0188 --- /dev/null +++ b/Changelog.md @@ -0,0 +1,8 @@ +# 0.2.6 (November 23, 2022) + +Add license, README, and Changelog + + +# 0.2.5 (November 23, 2022) + +First usable version diff --git a/README.md b/README.md new file mode 100644 index 0000000..60ae0d3 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Voter + +A simple CGI webpage that records votes, approval-voting-style. + +Demo at https://vote.scottworley.com/demo diff --git a/src/main.rs b/src/main.rs index f75557e..f79d353 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,9 @@ +// voter: A simple CGI vote recorder, approval-voting-style +// +// This program is free software: you can redistribute it and/or modify it +// under the terms of the GNU Affero General Public License as published +// by the Free Software Foundation, version 3. + use rand::prelude::*; use std::collections::{HashMap, HashSet}; use std::io::prelude::*;