mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-13 16:32:56 +00:00
* This way all clippy lints defined in the lib also cover the binary code. * It's much easier to detect unused code. * Fix all discovered lints.
8 lines
196 B
Rust
8 lines
196 B
Rust
#[global_allocator]
|
|
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
proxy::binary::local_proxy::run().await
|
|
}
|