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
36 lines (31 loc) · 968 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 968 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
33
34
35
36
[package]
name = "diesel_cli"
version = "0.11.0"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Diesel crate"
readme = "README.md"
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.3"
clap = "2.20.3"
diesel = { version = "0.11.0", default-features = false }
dotenv = "0.8.0"
diesel_infer_schema = "0.11.0"
clippy = { optional = true, version = "=0.0.114" }
[dev-dependencies]
tempdir = "0.3.4"
regex = "0.1.48"
[features]
default = ["postgres", "sqlite", "mysql"]
lint = ["clippy"]
postgres = ["diesel/postgres", "diesel_infer_schema/postgres"]
sqlite = ["diesel/sqlite", "diesel_infer_schema/sqlite"]
mysql = ["diesel/mysql", "diesel_infer_schema/mysql"]
[[test]]
name = "tests"