-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 861 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
[package]
name = "tonic-native-tls"
version = "0.1.3"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/BratSinot/tonic-native-tls"
homepage = "https://github.com/BratSinot/tonic-native-tls"
description = "native-tls for tonic"
categories = ["web-programming"]
keywords = ["http", "grpc", "service"]
[workspace]
members = [
"example"
]
[features]
vendored = ["native-tls/vendored"]
[dependencies]
async-stream = "0.3.3"
futures-util = "0.3.24"
tokio-native-tls = "0.3.0"
tokio = { version = "1", features = ["rt-multi-thread"] }
axum = { version = "0.5.16", optional = true, default-features = false }
native-tls = { version = "0.2.10", optional = true }
tracing = { version = "0.1.37", optional = true, default-features = false }
tonic = { version = "0.8.2", optional = true, default-features = false, features = ["transport"] }