mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-25 09:00:37 +00:00
* ensure_server_config() function is added to ensure the server does not have background processes which intervene with WAL generation * Rework command line syntax * Add `print-postgres-config` subcommand which prints the required server configuration
16 lines
394 B
TOML
16 lines
394 B
TOML
[package]
|
|
name = "wal_generate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = "3.0"
|
|
env_logger = "0.9"
|
|
log = "0.4"
|
|
once_cell = "1.8.0"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="d052ee8b86fff9897c77b0fe89ea9daba0e1fa38" }
|
|
tempfile = "3.2"
|