mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 06:52:55 +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.
27 lines
578 B
TOML
27 lines
578 B
TOML
[package]
|
|
name = "postgres_backend"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
anyhow.workspace = true
|
|
bytes.workspace = true
|
|
futures.workspace = true
|
|
rustls.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
tokio-rustls.workspace = true
|
|
tracing.workspace = true
|
|
|
|
pq_proto.workspace = true
|
|
|
|
[dev-dependencies]
|
|
once_cell.workspace = true
|
|
rustls-pemfile.workspace = true
|
|
tokio-postgres.workspace = true
|
|
tokio-postgres-rustls.workspace = true
|