-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
37 lines (33 loc) · 953 Bytes
/
Cargo.toml
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 = "migrant"
version = "0.14.0"
authors = ["James Kominick <james@kominick.com>"]
description = "CLI Database migration management for postgres, sqlite, mysql"
repository = "https://github.com/jaemk/migrant"
readme = "README.md"
keywords = ["database", "migration", "postgres", "sqlite", "mysql"]
categories = ["command-line-utilities", "database", "development-tools"]
license = "MIT"
exclude = [
"/ci/*",
"/migrations/*",
"/db/*",
"Migrant.toml",
".travis.yml",
]
[dependencies]
clap = "2"
error-chain = "0.12"
migrant_lib = { version = "0.32" }
self_update = { version = "0.26", optional = true }
rusqlite = { version = "0.24", optional = true, features = ["bundled"] }
dotenv = "0.14"
[dev-dependencies]
assert_cli = "0.6"
[features]
default = []
sqlite = ["migrant_lib/d-sqlite", "rusqlite"]
postgres = ["migrant_lib/d-postgres"]
mysql = ["migrant_lib/d-mysql"]
update = ["self_update"]
integration_tests = []