diesel_cli 0.5.3

Provides the CLI for the Diesel crate
[package]
name = "diesel_cli"
version = "0.5.3"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Diesel crate"
documentation = "http://diesel.rs/guides/getting-started"
homepage = "http://diesel.rs"
repository = "https://github.com/sgrif/diesel"
keywords = ["orm", "database", "postgres", "postgresql", "sql"]

[[bin]]
name = "diesel"

[dependencies]
chrono = "0.2.17"
clap = "1.5.5"
diesel = { version = "0.5.0", default-features = false }
dotenv = "0.8.0"

[dev-dependencies]
tempdir = "0.3.4"
regex = "0.1.48"

[features]
default = ["postgres", "sqlite"]
postgres = ["diesel/postgres"]
sqlite = ["diesel/sqlite"]

[[test]]
name = "tests"