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
32 lines (27 loc) · 890 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 890 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
32
[package]
name = "diesel_cli"
version = "0.10.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 = "2.20.3"
diesel = { version = "0.10.0", default-features = false }
dotenv = "0.8.0"
diesel_infer_schema = { version = "0.1.0", default-features = false, path = "../diesel_infer_schema" }
[dev-dependencies]
tempdir = "0.3.4"
regex = "0.1.48"
[features]
default = ["postgres", "sqlite"]
postgres = ["diesel/postgres", "diesel_infer_schema/postgres"]
sqlite = ["diesel/sqlite", "diesel_infer_schema/sqlite"]
[[test]]
name = "tests"