2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_rpc"
|
2023-03-13 17:44:09 +00:00
|
|
|
version = "0.8.2"
|
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-05-07 16:12:01 +00:00
|
|
|
garage_util.workspace = true
|
2021-05-28 11:58:47 +00:00
|
|
|
|
2021-03-16 14:58:40 +00:00
|
|
|
arc-swap = "1.0"
|
2021-03-18 20:59:17 +00:00
|
|
|
bytes = "1.0"
|
2020-04-24 10:10:01 +00:00
|
|
|
gethostname = "0.2"
|
2021-03-18 20:59:17 +00:00
|
|
|
hex = "0.4"
|
2023-01-23 22:27:44 +00:00
|
|
|
tracing = "0.1"
|
2021-10-14 09:50:12 +00:00
|
|
|
rand = "0.8"
|
|
|
|
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
|
2023-01-26 14:04:32 +00:00
|
|
|
systemstat = "0.2.3"
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2021-10-14 09:50:12 +00:00
|
|
|
async-trait = "0.1.7"
|
2020-04-24 10:10:01 +00:00
|
|
|
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
|
2021-11-09 11:24:04 +00:00
|
|
|
serde_bytes = "0.11"
|
2020-06-30 16:33:14 +00:00
|
|
|
serde_json = "1.0"
|
2022-10-18 16:38:20 +00:00
|
|
|
err-derive = { version = "0.3", optional = true }
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2022-03-06 13:50:00 +00:00
|
|
|
# newer version requires rust edition 2021
|
2022-10-14 16:10:36 +00:00
|
|
|
kube = { version = "0.75", default-features = false, features = ["runtime", "derive", "client", "rustls-tls"], optional = true }
|
|
|
|
k8s-openapi = { version = "0.16", features = ["v1_22"], optional = true }
|
2022-03-16 11:09:50 +00:00
|
|
|
schemars = { version = "0.8", optional = true }
|
2022-10-18 20:11:27 +00:00
|
|
|
reqwest = { version = "0.11", optional = true, default-features = false, features = ["rustls-tls-manual-roots", "json"] }
|
2022-03-06 13:50:00 +00:00
|
|
|
|
2023-02-28 15:06:43 +00:00
|
|
|
pnet_datalink = "0.33"
|
2022-03-06 13:50:00 +00:00
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
futures = "0.3"
|
|
|
|
futures-util = "0.3"
|
2021-03-15 21:36:41 +00:00
|
|
|
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
|
2021-03-16 14:58:40 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2022-02-16 13:23:04 +00:00
|
|
|
opentelemetry = "0.17"
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2022-09-19 18:12:19 +00:00
|
|
|
netapp = { version = "0.5.2", features = ["telemetry"] }
|
2022-02-18 19:39:55 +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" ]
|