mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-22 21:59:59 +00:00
workspace_hack is needed to avoid recompilation when different crates inside the workspace depend on the same packages but with different features being enabled. Problem occurs when you build crates separately one by one. So this is irrelevant to our CI setup because there we build all binaries at once, but it may be relevant for local development. this also changes cargo's resolver version to 2
21 lines
612 B
TOML
21 lines
612 B
TOML
[package]
|
|
name = "compute_tools"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
anyhow = "1.0"
|
|
chrono = "0.4"
|
|
clap = "3.0"
|
|
env_logger = "0.9"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
log = { version = "0.4", features = ["std", "serde"] }
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" }
|
|
regex = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
tar = "0.4"
|
|
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
|
|
workspace_hack = { version = "0.1", path = "../workspace_hack" }
|