]> git.scottworley.com Git - voter/commitdiff
Add license, README, and Changelog
authorScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 01:42:48 +0000 (17:42 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 24 Nov 2022 01:44:11 +0000 (17:44 -0800)
Cargo.toml
Changelog.md [new file with mode: 0644]
README.md [new file with mode: 0644]
src/main.rs

index 27f6bd6a8f3fd0a96104c53a3dbe86bcff630cf0..a755948a25bd48ced0fc5b836e01f3f6bcd21448 100644 (file)
@@ -4,8 +4,8 @@ version = "0.2.5"
 edition = "2021"
 authors = ["Scott Worley <scottworley@scottworley.com>"]
 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 (file)
index 0000000..ade0188
--- /dev/null
@@ -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 (file)
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
index f75557e95aa67f7bb9fc5fb98ebd8b8f67b743f6..f79d35368a7f287972bba551e95b1270bad2acbc 100644 (file)
@@ -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::*;