-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.29 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
[package]
name = "refinery_cli"
version = "0.9.0"
authors = ["Katharina Fey <kookie@spacekookie.de>", "João Oliveira <hello@jxs.pt>"]
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Refinery crate"
documentation = "https://docs.rs/refinery/"
repository = "https://github.com/rust-db/refinery"
readme = "README.md"
keywords = ["refinery", "migrations", "cli"]
edition = "2018"
[[bin]]
name = "refinery"
path = "src/main.rs"
[features]
default = ["mysql", "postgresql", "sqlite-bundled", "mssql"]
postgresql = ["refinery-core/postgres"]
mysql = ["refinery-core/mysql"]
sqlite = ["refinery-core/rusqlite"]
sqlite-bundled = ["sqlite", "refinery-core/rusqlite-bundled"]
mssql = ["refinery-core/tiberius-config", "tokio"]
int8-versions = ["refinery-core/int8-versions"]
[dependencies]
refinery-core = { version = "0.9.0", path = "../refinery_core", default-features = false, features = ["toml"] }
clap = { version = "4", features = ["derive"] }
human-panic = "2"
toml = "0.8"
env_logger = "0.11"
log = "0.4"
anyhow = "1"
regex = "1"
walkdir = "2.3.1"
cfg-if = "1.0.0"
tokio = { version = "1.0", features = ["full"], optional = true }
[dev-dependencies]
predicates = "3"
assert_cmd = "2"
[package.metadata.deb]
name = "refinery"
maintainer = "João Oliveira <hello@jxs.pt>"
depends = "libssl-dev"