[package]
edition = "2021"
name = "pgarchive"
version = "0.4.1"
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read PostgreSQL custom format archives"
homepage = "https://github.com/wichert/pgarchive"
documentation = "https://docs.rs/pgarchive/"
readme = "README.md"
keywords = [
"postgresql",
"pgdump",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/wichert/pgarchive"
[lib]
name = "pgarchive"
path = "src/lib.rs"
[[bin]]
name = "pgarchive"
path = "src/main.rs"
[[test]]
name = "data_test"
path = "tests/data_test.rs"
[[test]]
name = "header_test"
path = "tests/header_test.rs"
[dependencies.chrono]
version = "0.4.30"
[dependencies.flate2]
version = "1.0.27"
[dependencies.thiserror]
version = "1.0.49"
[dev-dependencies.hex-literal]
version = "0.4.1"