mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 12:02:55 +00:00
This change makes most parts of the code asynchronous, except for the `mgmt` subsystem (we're going to drop it anyway). Co-authored-by: bojanserafimov <bojan.serafimov7@gmail.com>
24 lines
606 B
TOML
24 lines
606 B
TOML
[workspace]
|
|
members = [
|
|
"compute_tools",
|
|
"control_plane",
|
|
"pageserver",
|
|
"postgres_ffi",
|
|
"proxy",
|
|
"walkeeper",
|
|
"workspace_hack",
|
|
"zenith",
|
|
"zenith_metrics",
|
|
"zenith_utils",
|
|
]
|
|
|
|
[profile.release]
|
|
# This is useful for profiling and, to some extent, debug.
|
|
# Besides, debug info should not affect the performance.
|
|
debug = true
|
|
|
|
# This is only needed for proxy's tests
|
|
# TODO: we should probably fork tokio-postgres-rustls instead
|
|
[patch.crates-io]
|
|
tokio-postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="2949d98df52587d562986aad155dd4e889e408b7" }
|