-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 886 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 886 Bytes
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
[package]
name = "deriddl-rs"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Fast, deterministic ODBC schema migration tool built in Rust"
repository = "https://github.com/traagel/deriddl-rs"
keywords = ["database", "migration", "odbc", "sql", "schema"]
categories = ["database", "command-line-utilities"]
[dependencies]
clap = { version = "4", features = ["derive"] }
log = "0.4"
env_logger = "0.11"
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
odbc-api = "14.2"
chrono = { version = "0.4", features = ["serde"] }
regex = "1.10"
[features]
default = []
integration = []
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"
serial_test = "3.0"
deriddl-rs = { path = ".", features = ["integration"] }
[lib]
name = "deriddl_rs"
path = "src/lib.rs"
[[bin]]
name = "deriddl_rs"
path = "src/main.rs"