-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·60 lines (55 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "libinquest"
version = "0.1.0"
authors = ["Marc Schlegel <[email protected]>"]
edition = "2021"
description = "A probing tool to check for external service availability."
[dependencies]
thiserror = "1.0.*"
anyhow = "1.0"
log = "0.4.*"
stderrlog = "0.5.*"
rustls = "0.20.*"
webpki = "0.22.*"
webpki-roots = "0.22.*"
rustls-native-certs = "0.6.*"
rustls-pemfile = "1.*"
reqwest = { version="0.11.*", default-features = false, features=["blocking", "rustls", "rustls-tls-native-roots"]}
url = "2.3.*" # used by reqwest anyways
oracle = "0.5.*"
postgres = {version="0.19.*", features=["with-serde_json-1","with-chrono-0_4", "with-bit-vec-0_6", "with-eui48-1", "with-uuid-1", "with-time-0_3", "with-geo-types-0_7"]}
bit-vec = "*"
uuid = "1.*"
eui48 = "1.*"
geo-types = "0.7.*"
bigdecimal = "0.3.0"
tiberius = {version="0.12.*", default-features=false, features=["tds73", "rustls", "chrono", "time", "bigdecimal"]}
tokio = "1.24.*"
tokio-util = "0.7.*"
tokio-postgres = "0.7.*"
tokio-postgres-rustls = "0.9.*"
hocon = { version = "0.9.*" }
secrecy = "0.7.0"
aes = "0.6.0"
block-modes = "0.7.0"
base64 = "0.21.*"
clap = {version="4.1.*", features=["derive", "cargo"]}
term = "0.7.*"
async-std = "1.12.*"
chrono = "0.4.*"
time = "0.3.*"
serde_json = "1.*"
[dev-dependencies]
assert_matches = "1.5"
[features]
default = [
"tokio-util/compat",
]
[[test]]
# separate integration testing
name = "integration"
path = "tests/integration.rs"
[profile.release]
panic = "abort" # the program will not panic because we properly handle everything
lto = true # link-time-optimizer to reduce binary-size