2020-04-24 10:10:01 +00:00
|
|
|
[package]
|
|
|
|
name = "garage_rpc"
|
2023-10-10 14:08:11 +02:00
|
|
|
version = "0.9.0"
|
2020-04-24 10:10:01 +00:00
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>"]
|
|
|
|
edition = "2018"
|
2021-03-18 21:59:17 +01:00
|
|
|
license = "AGPL-3.0"
|
2020-07-07 14:14:58 +02:00
|
|
|
description = "Cluster membership management and RPC protocol for the Garage object store"
|
|
|
|
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
|
2021-11-09 12:24:04 +01: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 17:24:51 +02:00
|
|
|
format_table.workspace = true
|
2023-08-28 15:04:18 +02:00
|
|
|
garage_db.workspace = true
|
2023-05-07 18:12:01 +02:00
|
|
|
garage_util.workspace = true
|
2021-05-28 13:58:47 +02:00
|
|
|
|
2021-03-16 15:58:40 +01:00
|
|
|
arc-swap = "1.0"
|
2021-03-18 21:59:17 +01:00
|
|
|
bytes = "1.0"
|
2022-11-07 21:12:11 +01:00
|
|
|
bytesize = "1.1"
|
2023-08-01 14:44:44 +01:00
|
|
|
gethostname = "0.4"
|
2021-03-18 21:59:17 +01:00
|
|
|
hex = "0.4"
|
2023-01-23 22:27:44 +00:00
|
|
|
tracing = "0.1"
|
2021-10-14 11:50:12 +02:00
|
|
|
rand = "0.8"
|
2022-05-01 09:54:19 +02:00
|
|
|
itertools="0.10"
|
2021-10-14 11:50:12 +02:00
|
|
|
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
|
2023-09-11 19:08:24 +02:00
|
|
|
nix = { version = "0.27", default-features = false, features = ["fs"] }
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2021-10-14 11:50:12 +02: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 12:24:04 +01:00
|
|
|
serde_bytes = "0.11"
|
2020-06-30 18:33:14 +02:00
|
|
|
serde_json = "1.0"
|
2022-10-18 18:38:20 +02:00
|
|
|
err-derive = { version = "0.3", optional = true }
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2022-03-06 14:50:00 +01:00
|
|
|
# newer version requires rust edition 2021
|
2022-10-14 18:10:36 +02: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 12:09:50 +01:00
|
|
|
schemars = { version = "0.8", optional = true }
|
2022-10-18 22:11:27 +02:00
|
|
|
reqwest = { version = "0.11", optional = true, default-features = false, features = ["rustls-tls-manual-roots", "json"] }
|
2022-03-06 14:50:00 +01:00
|
|
|
|
2023-02-28 16:06:43 +01:00
|
|
|
pnet_datalink = "0.33"
|
2022-03-06 14:50:00 +01:00
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
futures = "0.3"
|
|
|
|
futures-util = "0.3"
|
2021-03-15 22:36:41 +01:00
|
|
|
tokio = { version = "1.0", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
|
2021-03-16 15:58:40 +01:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2022-02-16 14:23:04 +01:00
|
|
|
opentelemetry = "0.17"
|
2020-04-24 10:10:01 +00:00
|
|
|
|
2023-09-27 13:12:41 +02:00
|
|
|
netapp = { version = "0.10", features = ["telemetry"] }
|
2022-02-18 20:39:55 +01:00
|
|
|
|
2022-03-16 12:09:50 +01:00
|
|
|
[features]
|
2022-10-14 18:10:36 +02:00
|
|
|
kubernetes-discovery = [ "kube", "k8s-openapi", "schemars" ]
|
2022-10-18 18:38:20 +02:00
|
|
|
consul-discovery = [ "reqwest", "err-derive" ]
|
2022-09-03 18:37:24 +02:00
|
|
|
system-libs = [ "sodiumoxide/use-pkg-config" ]
|