summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2023-04-26 23:22:54 -0400
committerOwen Jacobson <owen@grimoire.ca>2023-04-26 23:22:54 -0400
commit06e9c527fdc2f02c071702aa85eca79762e5c8f1 (patch)
treeafcb2d6e6e84287b91c06b76fb2749ed8acd7a29
parentf07b630ddebc455a0b861088a78a4ee54b6f65d6 (diff)
Unbreak builds to test build cancellation
-rw-r--r--Cargo.toml32
-rw-r--r--src/lib.rs2
2 files changed, 31 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d3f3127..775938a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1 +1,31 @@
-lol fail the build
+[package]
+name = "things-to-check"
+version = "0.1.0+evergreen"
+repository = "https://github.com/ojacobson/things-to-check/"
+publish = false
+authors = ["Owen Jacobson <owen@grimoire.ca>"]
+homepage = "https://things-to-check.herokuapp.com/"
+edition = "2021"
+
+[badges.travis-ci]
+project = "ojacobson/things-to-check"
+branch = "main"
+
+[dependencies]
+pulldown-cmark = "0.9.1"
+rand = "0.8.5"
+serde = "1.0.137"
+serde_urlencoded = "0.7.1"
+serde_yaml = "0.8.24"
+thiserror = "1.0.31"
+url = "2.2.2"
+actix-web = "4.0.1"
+askama = { version = "0.11.1", features = ["with-actix-web"] }
+askama_actix = "0.13.0"
+
+[dev-dependencies]
+lazy_static = "1.4.0"
+proptest = "1.0.0"
+proptest-derive = "0.3.0"
+
+[features]
diff --git a/src/lib.rs b/src/lib.rs
index 2354cd2..1f7b19a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,2 @@
pub mod twelve;
pub mod view;
-
-compile_error!("Fail the build");