mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
This removes workspace hack from all libs, not from any binaries. This does not change the behaviour of the hack. Running ``` cargo clean cargo build --release --bin proxy ``` Before this change took 5m16s. After this change took 3m3s. This is because this allows the build to be parallelisable much more.
15 lines
263 B
TOML
15 lines
263 B
TOML
[package]
|
|
name = "walproposer"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
utils.workspace = true
|
|
postgres_ffi.workspace = true
|
|
|
|
[build-dependencies]
|
|
anyhow.workspace = true
|
|
bindgen.workspace = true
|