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
59 lines (52 loc) · 1.47 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (52 loc) · 1.47 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "diesel_cli"
version = "2.0.0-rc.0"
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Diesel crate"
readme = "README.md"
documentation = "https://diesel.rs/guides/getting-started"
homepage = "https://diesel.rs"
repository = "https://github.com/diesel-rs/diesel"
keywords = ["diesel", "migrations", "cli"]
autotests = false
edition = "2018"
include = ["src/**/*", "LICENSE-*", "README.md"]
rust-version = "1.54.0"
[[bin]]
name = "diesel"
path = "src/main.rs"
doc = false
[dependencies]
chrono = { version = "0.4.19", default-features = false, features = ["clock", "std"] }
clap = "3.1"
clap_complete = "3.1"
dotenvy = "0.15"
heck = "0.4.0"
serde = { version = "1.0.0", features = ["derive"] }
toml = "0.5"
url = { version = "2.1.0", optional = true }
libsqlite3-sys = { version = ">=0.17.2, <0.25.0", optional = true }
diffy = "0.2.0"
regex = "1.0.6"
serde_regex = "1.1"
[dependencies.diesel]
version = "~2.0.0-rc.0"
path = "../diesel"
default-features = false
[dependencies.diesel_migrations]
version = "~2.0.0-rc.0"
path = "../diesel_migrations/"
[dev-dependencies]
difference = "2.0"
tempfile = "3.1.0"
regex = "1.3.9"
url = { version = "2.2.2" }
[features]
default = ["postgres", "sqlite", "mysql"]
postgres = ["diesel/postgres", "url", "uses_information_schema"]
sqlite = ["diesel/sqlite"]
mysql = ["diesel/mysql", "url", "uses_information_schema"]
sqlite-bundled = ["sqlite", "libsqlite3-sys/bundled"]
uses_information_schema = []
[[test]]
name = "tests"