-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 817 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"tonic-tls", "tonic-tls-tests"
]
[workspace.dependencies]
tonic-tls = { path = "tonic-tls" , default-features = true}
tokio = "1"
tokio-rustls = { version = "0.26", default-features = false }
async-stream = "0.3"
futures = { version = "0.3", default-features = false }
tonic = "0.12"
tower = "0.5"
hyper = "1.5"
hyper-util = "0.1"
tracing = "0.1"
# native tls
tokio-native-tls = "0.3"
# openssl
tokio-openssl = "0.6"
openssl = "0.10"
# schannel
tokio-schannel = "0.1"
schannel = "0.1"
# for dev only
rcgen = {version = "0.13", default-features = true }
tokio-util = "0.7"
tokio-stream = { version = "0.1", features = ["net"] }
prost = "0.13"
rustls = { version = "0.23", default-features = false , features = ["std"]}
native-tls = { version = "0.2", features = ["alpn"] }