-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
34 lines (31 loc) · 970 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
[package]
name = "flv-tls-proxy"
version = "0.9.0"
edition = "2021"
authors = ["Fluvio Contributors <[email protected]>"]
description = "Simple Local TLS Proxy"
repository = "https://github.com/infinyon/flv-tls-proxy"
license = "Apache-2.0"
categories = ["encoding"]
[features]
default = ["openssl_tls"]
openssl_tls = ["fluvio-future/openssl_tls"]
rust_tls = ["fluvio-future/rust_tls"]
[dependencies]
log = "0.4.8"
cfg-if = "1.0.0"
futures-lite = { version = "2.3.0" }
pin-project-lite = "0.2.0"
futures-util = { version = "0.3.5", features = ["sink", "io"] }
x509-parser = "0.16.0"
serde = "1.0.117"
serde_json = "1.0.59"
async-trait = "0.1.41"
event-listener = "5.3.1"
tokio = { version = "1.3.0", features = ["macros"] }
fluvio-future = { version = "0.7.0", features = ["net", "task"] }
[dev-dependencies]
anyhow = "1.0.86"
bytes = "1.0.0"
flv-util = { version = "0.5.0", features = ["fixture"] }
fluvio-future = { version = "0.7.0", features = ["fixture", "timer"] }