gel-dsn 0.2.0

Data-source name (DSN) parser for Gel and PostgreSQL databases.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod env;
mod file;
#[cfg(feature = "gel")]
pub mod gel;
mod host;
#[cfg(feature = "postgres")]
pub mod postgres;
mod user;

pub use env::EnvVar;
pub use file::FileAccess;
pub use host::{Host, HostType};
pub use user::UserProfile;