-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (33 loc) · 1.05 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
[package]
name = "rmmm"
version = "0.4.2"
description = "Rust MySQL Migration Manager"
repository = "https://github.com/EasyPost/rmmm"
authors = ["James Brown <[email protected]>"]
readme = "README.md"
edition = "2021"
license = "ISC"
keywords = ["database", "mysql", "schema"]
categories = ["command-line-utilities", "database", "development-tools"]
[dependencies]
anyhow = "1"
chrono = "0.4"
clap = { version = "3.2", features=["std", "color", "suggestions", "cargo", "env", "wrap_help"] }
derive_more = "0.99"
fern = {version = "0.6", features=["colored"]}
itertools = "0.10"
lazy_static = "1"
log = "0.4"
mysql = { version = "23", default_features = false }
# these next two are only in here to set features used by mysql
flate2 = { version = "1", default_features = false, features = ["zlib"] }
mysql_common = { version = "^0.29", default_features = false, features = ["time03"]}
once_cell = "1"
regex = "1"
tabled = "0.5"
tempfile = "3"
[features]
default = ["uuid"]
native-tls = ["mysql/native-tls"]
rustls-tls = ["mysql/rustls-tls"]
uuid = ["mysql_common/uuid"]