aboutsummaryrefslogtreecommitdiff
path: root/src/net/Cargo.toml
blob: c12b39a4b0a4c082d3e54419d2c67f808ebb0e4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "garage_net"
version = "1.0.0"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2018"
license = "AGPL-3.0"
description = "Networking library for Garage RPC communication, forked from Netapp"
repository = "https://git.deuxfleurs.fr/Deuxfleurs/garage"
readme = "../../README.md"

[lib]
path = "lib.rs"

[features]
default = []
telemetry = ["opentelemetry", "opentelemetry-contrib"]

[dependencies]
futures.workspace = true
pin-project.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tokio-stream.workspace = true

serde.workspace = true
rmp-serde.workspace = true
hex.workspace = true

rand.workspace = true

log.workspace = true
arc-swap.workspace = true
async-trait.workspace = true
err-derive.workspace = true
bytes.workspace = true
cfg-if.workspace = true

sodiumoxide.workspace = true
kuska-handshake.workspace = true

opentelemetry = { workspace = true, optional = true }
opentelemetry-contrib = { workspace = true, optional = true }

[dev-dependencies]
pretty_env_logger.workspace = true