summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-06-03 23:26:24 -0400
committerOwen Jacobson <owen@grimoire.ca>2020-06-03 23:26:24 -0400
commit21de322d6cf221867ec9600e1a31777a195c7597 (patch)
tree1aab43a7559daa252cd1412a9bc2f8e3f367fe33 /Cargo.toml
parent23687bea794a18ff594658e9006457bff7b4a752 (diff)
parentebd04ae88f28a547eabbb44e1eccfd19965be7ae (diff)
Replace Python (apistar) version with Rust (actix-web) version.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..1002fa2
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,25 @@
+[package]
+name = "things-to-check"
+version = "0.1.0"
+publish = false
+authors = ["Owen Jacobson <owen@grimoire.ca>"]
+edition = "2018"
+
+[dependencies]
+actix-rt = "~1.0"
+actix-web = "~2.0"
+rand = "~0.7"
+serde = "~1.0"
+serde_urlencoded = "~0.6"
+serde_yaml = "~0.8"
+thiserror = "~1.0"
+url = "~2.1"
+
+[dependencies.maud]
+git = "https://github.com/lambda-fairy/maud"
+features = ["actix-web"]
+
+[dev-dependencies]
+lazy_static = "~1.4"
+quickcheck = "~0.9"
+quickcheck_macros = "~0.9"