1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![doc(html_root_url = "https://docs.rs/rexsgdata/0.3.2")]
#![cfg_attr(
all(feature = "cargo-clippy", feature = "pedantic"),
warn(clippy_pedantic)
)]
#![cfg_attr(feature = "cargo-clippy", warn(use_self))]
#![deny(warnings, missing_debug_implementations)]
extern crate libc;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate slog;
pub use element::Element;
pub use sgdata::SgData;
pub use sglist::SgList;
mod element;
mod sgdata;
mod sglist;