-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1016 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 1016 Bytes
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
[package]
name = "protosocket-rpc"
description = "RPC using protosockets"
version.workspace = true
authors.workspace = true
repository.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
protosocket = { workspace = true }
futures = { workspace = true }
k-lock = { workspace = true }
log = { workspace = true }
rand = { workspace = true }
rustls-pki-types = { workspace = true }
socket2 = { workspace = true, features = ["all"] }
tokio = { workspace = true }
tokio-rustls = { workspace = true }
tokio-util = { workspace = true }
thiserror = { workspace = true }
webpki-roots = { workspace = true }
[dev-dependencies]
prost = { workspace = true }
tokio = { workspace = true, features = ["full"] }