mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-27 16:12:56 +00:00
We depends on rustls in postgres_backend anyway, so might as well use it for all TLS stuff. Seems better to depend on only one library both from a security point of view, and because fewer dependencies means less code to compile. With this commit, we no longer depend on OpenSSL.
25 lines
751 B
TOML
25 lines
751 B
TOML
[package]
|
|
name = "control_plane"
|
|
version = "0.1.0"
|
|
authors = ["Stas Kelvich <stas@zenith.tech>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tar = "0.4.33"
|
|
postgres = { git = "https://github.com/zenithdb/rust-postgres.git", rev="9eb0dbfbeb6a6c1b79099b9f7ae4a8c021877858" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5"
|
|
lazy_static = "1.4"
|
|
regex = "1"
|
|
anyhow = "1.0"
|
|
thiserror = "1"
|
|
nix = "0.23"
|
|
url = "2.2.2"
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
|
|
pageserver = { path = "../pageserver" }
|
|
zenith_utils = { path = "../zenith_utils" }
|
|
workspace_hack = { path = "../workspace_hack" }
|