-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (29 loc) · 845 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
[package]
name = "wait_for_db"
version = "1.4.0"
authors = ["Tom Parker-Shemilt <[email protected]>"]
edition = "2018"
resolver = "2"
[dependencies]
odbc-api = "0.19"
odbc-sys = { version= "0.17", features=["static"] }
env_logger = "0.10.0"
clap = { version = "4", features = ["std", "cargo", "help", "usage"], default-features = false }
exitcode = "1.1"
postgres = {version = "0.19", default-features = false }
regex = {version="1", default-features = false }
rustls = {version="0.21", features=["dangerous_configuration"]}
tokio-postgres-rustls = "0.10"
url = "2"
log = "0.4"
[dev-dependencies]
assert_cmd = "1.0"
predicates = "1"
# Settings here are because we care more about size than speed
# Based on https://github.com/johnthagen/min-sized-rust
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = 'abort'