From 370aa8f9140476dd39d26831494b2de737edb359 Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 12 Jun 2021 18:41:16 -0300 Subject: [Project] Rust Testserver A static webserver helper for writing automated tests. Distinguishes itself from other projects by storing the document root as a string literal. --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..568b739 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "testserver" +version = "0.1.0" +description = "Static HTTP webserver that stores resources as strings" +readme = "README.md" +authors = ["SoniEx2 "] +edition = "2018" +license = "AGPL-3.0-or-later" +repository = "https://soniex2.autistic.space/git-repos/testserver-rs.git" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +ar = "0.8" +base64 = "0.13" +percent-encoding = "2.1" +tiny_http = "0.8" -- cgit v1.2.3