-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 780 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
[package]
name = "pgextract"
version = "0.3.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
assert_cmd = "2.0.14"
bytes = "1.11.0"
chrono = "0.4.43"
clap = { version = "4.5.3", features = ["derive"] }
native-tls = { version = "0.2.11", features = ["vendored"] }
pin-project-lite = "0.2.16"
postgres-native-tls = "0.5.0"
postgres-protocol = "0.6.10"
regex = "1.10.3"
serde = "1.0.228"
serde_json = { version = "1.0.149", features = ["preserve_order"] }
tokio = { version = "1.49.0", features = ["full"] }
tokio-postgres = { version = "0.7.16", features = ["with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] }
tokio-stream = "0.1.18"
uuid = "1.20.0"
[dev-dependencies]
assert_cmd = "2.0.14"