libmultilog 0.0.9

Various logging implementations in Rust
[package]
name = "libmultilog"
version = "0.0.9"
authors = ["Jason Ozias <jason.ozias@ipaper.com>"]
description = "Various logging implementations in Rust"
documentation = "http://rustyhorde.github.io/logger/logger"
homepage = "http://rustyhorde.github.io/logger"
repository = "https://github.com/rustyhorde/logger"
readme = "README.md"
license = "MIT"
keywords = ["rust","rustyhorde","log","logger"]
build = "build.rs"

[build-dependencies]
vergen = "*"

[features]
socket = []
mysqll = ["mysql"]
postgresl = ["postgres"]
sqlite = ["rusqlite"]

[dependencies]
bitflags = "*"
log = "*"
regex = "*"
time = "*"

[dependencies.mysql]
version = "*"
optional = true

[dependencies.postgres]
version = "*"
features = ["time"]
optional = true

[dependencies.rusqlite]
version = "*"
optional = true

[lib]
name = "libmultilog"