[src/lib] Expose `application` publicly

This commit is contained in:
Samuel Marks 2019-01-10 15:31:47 +11:00
parent e5cdd22720
commit 08835c5595
No known key found for this signature in database
GPG Key ID: A3DA1ED8A801C4C5
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,6 @@ extern crate webpki;
#[cfg(feature = "rust-tls")] #[cfg(feature = "rust-tls")]
extern crate webpki_roots; extern crate webpki_roots;
mod application;
mod body; mod body;
mod context; mod context;
mod de; mod de;
@ -190,6 +189,7 @@ mod scope;
mod uri; mod uri;
mod with; mod with;
pub mod application;
pub mod client; pub mod client;
pub mod error; pub mod error;
pub mod fs; pub mod fs;