From 070e7709ff0d18488ada3dcad38ac57ef73c3bef Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Fri, 18 Sep 2020 08:35:35 +0300 Subject: feat: add a rudimentary chunk server main program Also, add an initial subplot to document and verify acceptance criteria. --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 0f10594..5575cc8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,10 +4,14 @@ version = "0.1.0" authors = ["Lars Wirzenius "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] anyhow = "1" +bytes = "0.5" serde = { version = "1", features = ["derive"] } serde_json = "1" +serde_yaml = "0.8" +structopt = "0.3" +thiserror = "1" +tokio = { version = "0.2", features = ["macros"] } uuid = { version = "0.8", features = ["v4"] } +warp = { version = "0.2", features = ["tls"] } -- cgit v1.2.1