This repository has been archived on 2021-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
git-config/src/lib.rs

13 lines
222 B
Rust
Raw Normal View History

2021-02-23 08:30:48 -08:00
#![forbid(unsafe_code)]
2021-02-18 09:49:47 -08:00
// mod de;
2021-02-18 21:12:59 -08:00
pub mod config;
2021-02-18 09:49:47 -08:00
mod error;
// mod ser;
pub mod parser;
2021-02-18 21:12:59 -08:00
pub mod values;
2021-02-18 09:49:47 -08:00
// pub use de::{from_str, Deserializer};
pub use error::{Error, Result};
// pub use ser::{to_string, Serializer};