chiark / gitweb /
server: get token, wip hmac work
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 9 Aug 2021 01:04:39 +0000 (02:04 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Mon, 9 Aug 2021 01:08:50 +0000 (02:08 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Cargo.lock
Cargo.toml

index ee063c25309113e533a81a1ebbf0215ed536b696..9b65d3e7c6a3ea31d51d19f6b86cdc5b36fb745f 100644 (file)
@@ -434,6 +434,7 @@ dependencies = [
  "regex",
  "sha2",
  "structopt",
+ "subtle",
  "thiserror",
  "tokio",
  "void",
@@ -1057,6 +1058,12 @@ dependencies = [
  "syn",
 ]
 
+[[package]]
+name = "subtle"
+version = "2.4.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
+
 [[package]]
 name = "syn"
 version = "1.0.73"
index fb745c8a2daa5c30375421c76b7f015e3827be0c..836d9268cd98215f813e75a88aaae82fd64a8ac7 100644 (file)
@@ -43,6 +43,7 @@ log = "0.4"
 memchr = "2"
 sha2 = "0.9"
 structopt = "0.3"
+subtle = "2"
 tokio = { version = "1", features = ["full"] }
 thiserror = "1"
 void = "1"