diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-03-23 09:54:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 09:54:22 -0400 |
commit | 53dac7451bbdd527aa91e01653b678547624fc39 (patch) | |
tree | c43dbc34fd4ada4249064aab2086ab64b276a460 /cli/http_util.rs | |
parent | 5edcd9dd355483df6b9a8c34ca94f3f54d672b9e (diff) |
chore: remove all `pub(crate)`s from the cli crate (#14083)
Diffstat (limited to 'cli/http_util.rs')
-rw-r--r-- | cli/http_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/http_util.rs b/cli/http_util.rs index 7e10c9042..b99251f96 100644 --- a/cli/http_util.rs +++ b/cli/http_util.rs @@ -57,7 +57,7 @@ pub type HeadersMap = HashMap<String, String>; /// This is heavily influenced by /// https://github.com/kornelski/rusty-http-cache-semantics which is BSD /// 2-Clause Licensed and copyright Kornel LesiĆski -pub(crate) struct CacheSemantics { +pub struct CacheSemantics { cache_control: CacheControl, cached: SystemTime, headers: HashMap<String, String>, |