-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 911 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
33
34
35
[package]
name = "ptdb"
version = "0.3.12"
edition = "2021"
# See more keys and their definitions at:
# https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ptdb_lib"
path = "./src/lib.rs"
[[bin]]
name = "ptdb"
path = "./src/bin/ptdb.rs"
[dependencies]
shellexpand = "2.1.0"
clap = { version = "4.0.9", features = ["unstable-grouped"] }
toml = "0.5.9"
# prettytable-rs = "^0.9"
log = { version = "0.4.19", features = ["release_max_level_info", "max_level_trace"] }
fern = { version = "0.6", features = ["colored"] }
serde = { version = "1.0", features = ["derive"] }
figment = { version = "0.10", features = ["toml"] }
tabled = "0.10"
reqwest = { version = "0.11", features = ["blocking"] }
postgres = "0.19.3"
openssl = "0.10.38"
postgres-openssl = "0.5.0"
chrono = "0.4"
serde_json = "1.0"
# dns-lookup = "1.0.8"
colored = { version = "2.0.4", features = ["no-color"] }
anyhow = "1.0.72"