mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-07 05:22:56 +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.
22 lines
427 B
TOML
22 lines
427 B
TOML
[package]
|
|
name = "metrics"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
prometheus.workspace = true
|
|
libc.workspace = true
|
|
once_cell.workspace = true
|
|
chrono.workspace = true
|
|
twox-hash.workspace = true
|
|
measured.workspace = true
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
procfs.workspace = true
|
|
measured-process.workspace = true
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
rand_distr = "0.4.3"
|