From ebd04ae88f28a547eabbb44e1eccfd19965be7ae Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 1 Jun 2020 23:53:45 -0400 Subject: Port things-to-check to Rust as a learning exercise. This is somewhat overengineered in places, but does the job and exposes broadly the same interfaces as the Python version. Builds with emk/rust. --- Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 "] +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" -- cgit v1.2.3