forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 722 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "diesel_cli"
version = "0.7.1"
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 = "1.5.5"
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"