-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.22 KB
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
[package]
name = "pgcopy"
version = "0.1.5"
edition = "2024"
description = "CLI tool to export selected PostgreSQL objects into a bundle and import them into another database."
authors = ["hexqnt <hexqntlab@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["postgresql", "migration", "backup", "cli", "copy"]
categories = ["command-line-utilities", "database"]
publish = false
[dependencies]
age = "0.11.1"
anyhow = "1.0.100"
bytes = "1.10.1"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.6.0", features = ["derive"] }
futures-util = "0.3.31"
indicatif = "0.18.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tar = "0.4.45"
tempfile = "3.27.0"
tokio = { version = "1.50.0", features = [
"macros",
"rt-multi-thread",
"fs",
"io-util",
] }
tokio-postgres = "0.7.17"
toml = "1.1.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.23", features = ["fmt", "env-filter"] }
zstd = "0.13.3"
[profile.release]
strip = true
panic = "abort"
lto = true
codegen-units = 1
opt-level = 3
# rustflags = ["-Ctarget-cpu=x86-64-v3", "-Ctarget-feature=+avx2,+fma"]
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
cargo = "warn"