blob: f73f4a6e9aa70eef72f3a90de31c3f64f4fc3a9c [file] [log] [blame]
[package]
name = "diesel_cli"
version = "0.7.0"
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/diesel-rs/diesel"
keywords = ["orm", "database", "postgres", "postgresql", "sql"]
[[bin]]
name = "diesel"
[dependencies]
chrono = "0.2.17"
clap = "2.11"
diesel = { version = "0.7.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"