From f84be0893d8962e45c5046061b0895509d2a43d8 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sun, 14 Apr 2024 23:15:01 +0000 Subject: [PATCH] docs: document `hyper` dependency as a workaround for `a2` bug --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ad0a205..192f19e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,11 @@ anyhow = "1.0.32" async-std = { version = "1.9", features = ["tokio1", "attributes", "unstable"] } femme = "2.1.0" humantime = "2.0.1" -hyper = { version = "0.14", features = ["tcp"] } log = "0.4.11" serde = { version = "1.0.114", features = ["derive"] } sled = "0.34.2" structopt = "0.3.15" tide = "0.16.0" + +# Workaround for +hyper = { version = "0.14", features = ["tcp"] }