mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 01:12:56 +00:00
* etcd-client is not updated, since we plan to replace it with another client and the new version errors with some missing prost library error * clap had released another major update that requires changing every CLI declaration again, deserves a separate PR
19 lines
386 B
TOML
19 lines
386 B
TOML
[package]
|
|
name = "etcd_broker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
etcd-client = "0.9.0"
|
|
regex = "1.4.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_with = "2.0"
|
|
once_cell = "1.13.0"
|
|
|
|
utils = { path = "../utils" }
|
|
workspace_hack = { version = "0.1", path = "../../workspace_hack" }
|
|
tokio = "1"
|
|
tracing = "0.1"
|
|
thiserror = "1"
|