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.
29 lines
573 B
TOML
29 lines
573 B
TOML
[package]
|
|
name = "postgres_ffi"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
bytes.workspace = true
|
|
byteorder.workspace = true
|
|
anyhow.workspace = true
|
|
crc32c.workspace = true
|
|
hex.workspace = true
|
|
once_cell.workspace = true
|
|
log.workspace = true
|
|
memoffset.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
utils.workspace = true
|
|
|
|
[dev-dependencies]
|
|
env_logger.workspace = true
|
|
postgres.workspace = true
|
|
|
|
[build-dependencies]
|
|
anyhow.workspace = true
|
|
bindgen.workspace = true
|