-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 764 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (29 loc) · 764 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
[package]
name = "pg_dumpster"
version = "0.1.0"
edition = "2024"
default-run = "pg_dumpster"
[features]
profiling = []
[dependencies]
anyhow = "1.0.102"
arrow = "58"
clap = { version = "4.6.0", features = ["derive"] }
crossbeam-channel = "0.5.15"
parquet = { version = "58", features = ["arrow", "snap"] }
# libpgdump = "2.1.0"
libpgdump = { git = "https://github.com/NickCrews/libpgdump", rev = "17364a5d6c25e8899fbe18ac5ac8030e7fb47e2b" }
regex = "1.12.3"
reqwest = { version = "0.13.2", features = ["blocking"] }
serde_json = "1"
[dev-dependencies]
anyhow = "1.0.102"
criterion = { version = "0.5", features = ["html_reports"] }
[profile.bench]
opt-level = 3
debug = true
[profile.profiling]
inherits = "bench"
[[bench]]
name = "restore"
harness = false