1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Connection string parsing in Rust

//!

//! # Examples

//!

//! ```

//! // tbi

//! ```


#![forbid(unsafe_code, rust_2018_idioms)]
#![deny(missing_debug_implementations, nonstandard_style)]
#![warn(missing_docs, future_incompatible, unreachable_pub)]

mod ado;
mod error;
mod jdbc;

#[macro_use]
mod utils;

pub use ado::AdoNetString;
pub use jdbc::JdbcString;

pub use error::Error;
type Result<T> = std::result::Result<T, Error>;