2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_rpc"
|
2024-03-04 13:00:55 +00:00
|
|
|
version = "0.9.3"
|
2020-04-24 10:10:01 +00:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
edition = "2018"
|
2021-03-18 20:59:17 +00:00
|
|
|
license = "AGPL-3.0"
|
2020-07-07 12:14:58 +00:00
|
|
|
description = "Cluster membership management and RPC protocol for the Garage object store"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2021-11-09 11:24:04 +00:00
|
|
|
readme = "../../README.md"
|
2020-04-24 10:10:01 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-12 15:24:51 +00:00
|
|
|
format_table.workspace = true
|
2023-08-28 13:04:18 +00:00
|
|
|
garage_db.workspace = true
|
2023-05-07 16:12:01 +00:00
|
|
|
garage_util.workspace = true
|
2024-02-13 11:55:41 +00:00
|
|
|
garage_net.workspace = true
|
2021-05-28 11:58:47 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
arc-swap.workspace = true
|
|
|
|
bytes.workspace = true
|
|
|
|
bytesize.workspace = true
|
|
|
|
gethostname.workspace = true
|
|
|
|
hex.workspace = true
|
|
|
|
tracing.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
itertools.workspace = true
|
|
|
|
sodiumoxide.workspace = true
|
|
|
|
nix.workspace = true
|
|
|
|
|
|
|
|
async-trait.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_bytes.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
err-derive = { workspace = true, optional = true }
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2022-03-06 13:50:00 +00:00
|
|
|
# newer version requires rust edition 2021
|
2024-02-05 12:02:02 +00:00
|
|
|
kube = { workspace = true, optional = true }
|
|
|
|
k8s-openapi = { workspace = true, optional = true }
|
|
|
|
schemars = { workspace = true, optional = true }
|
|
|
|
reqwest = { workspace = true, optional = true }
|
2022-03-06 13:50:00 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
pnet_datalink.workspace = true
|
2022-03-06 13:50:00 +00:00
|
|
|
|
2024-02-05 12:02:02 +00:00
|
|
|
futures.workspace = true
|
|
|
|
futures-util.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
tokio-stream.workspace = true
|
|
|
|
opentelemetry.workspace = true
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2022-03-16 11:09:50 +00:00
|
|
|
[features]
|
2022-10-14 16:10:36 +00:00
|
|
|
kubernetes-discovery = [ "kube", "k8s-openapi", "schemars" ]
|
2022-10-18 16:38:20 +00:00
|
|
|
consul-discovery = [ "reqwest", "err-derive" ]
|
2022-09-03 16:37:24 +00:00
|
|
|
system-libs = [ "sodiumoxide/use-pkg-config" ]
|