From 237dd53d41aab5efe51707b58a1d5afe53bf1a21 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Thu, 25 Jan 2024 10:54:01 +0900 Subject: [PATCH] wip: fix structure --- src/ext/hyper_http.rs | 1 + src/ext/mod.rs | 1 + src/hyper_http_ext.rs | 0 src/lib.rs | 2 +- 4 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 src/ext/hyper_http.rs create mode 100644 src/ext/mod.rs delete mode 100644 src/hyper_http_ext.rs diff --git a/src/ext/hyper_http.rs b/src/ext/hyper_http.rs new file mode 100644 index 0000000..1f52a12 --- /dev/null +++ b/src/ext/hyper_http.rs @@ -0,0 +1 @@ +// hyper's http specific extension to generate and verify http signature diff --git a/src/ext/mod.rs b/src/ext/mod.rs new file mode 100644 index 0000000..e1c413c --- /dev/null +++ b/src/ext/mod.rs @@ -0,0 +1 @@ +mod hyper_http; diff --git a/src/hyper_http_ext.rs b/src/hyper_http_ext.rs deleted file mode 100644 index e69de29..0000000 diff --git a/src/lib.rs b/src/lib.rs index f399309..fe0f86b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ mod crypto; -mod hyper_http_ext; +mod ext; mod message_component; mod signature_base; mod signature_params;