-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
36 lines (34 loc) · 1.11 KB
/
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 = "movine"
license = "MIT"
version = "0.11.4"
authors = ["Byron Wasti <byron.wasti@gmail.com>"]
homepage = "https://github.com/byronwasti/movine"
repository = "https://github.com/byronwasti/movine"
description = "A simple database migration manager"
readme = "README.md"
maintenance = { status = "actively-developed" }
edition = "2018"
keywords = ["migration", "database", "cli"]
categories = ["command-line-utilities", "database"]
[dependencies]
postgres = "0.19.1"
chrono = "0.4.11"
dotenv = "0.15"
envy = "0.4"
structopt = "0.3.14"
toml = "0.5.6"
serde = { version = "1.0.106", features = ["derive"] }
log = "0.4.8"
rusqlite = "0.23.1"
env_logger = "0.7.1"
postgres-native-tls = { version = "0.5.0", optional = true }
native-tls = { version = "0.2.7", optional = true }
libsqlite3-sys = { version = "0.18.0", features = ["bundled"] }
ansi_term = "0.12.1"
rustls = { version = "0.19.0", optional = true }
tokio-postgres-rustls = { version = "0.8.0", optional = true }
[features]
default = ["with-native-tls"]
with-native-tls = ["native-tls", "postgres-native-tls"]
with-rustls = ["rustls", "tokio-postgres-rustls"]