soup/lib.rs
1// // Copyright 2013-2017, The Gtk-rs Project Developers.
2// // See the COPYRIGHT file at the top-level directory of this distribution.
3// // Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>
4#![cfg_attr(docsrs, feature(doc_cfg))]
5
6pub use ffi;
7pub use gio;
8pub use glib;
9
10#[macro_use]
11mod rt;
12
13pub mod prelude;
14
15#[allow(unused_imports)]
16mod auto;
17pub use auto::*;
18
19mod functions;
20pub use auto::functions::*;
21pub use functions::*;
22
23mod cookie_jar;
24mod logger;
25mod message_headers;
26mod server;
27mod session;
28mod websocket_connection;