forked from torresjeff/rtmp-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.09 KB
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 = "rtmp-rs"
version = "0.5.0"
edition = "2021"
authors = ["Jeff Torres"]
description = "RTMP client/server library"
license = "MIT"
repository = "https://github.com/torresjeff/rtmp-rs"
keywords = ["rtmp", "streaming", "video", "live"]
categories = ["multimedia::video", "network-programming"]
exclude = [
"assets/*",
]
[features]
default = []
tls = ["tokio-rustls", "rustls", "webpki-roots"]
[dependencies]
tokio = { version = "1", features = ["full"] }
bytes = "1"
tracing = "0.1"
tokio-rustls = { version = "0.26", optional = true }
rustls = { version = "0.23", optional = true, default-features = false, features = ["std", "tls12", "ring"] }
webpki-roots = { version = "0.26", optional = true }
[dev-dependencies]
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-test = "0.4"
[[example]]
name = "simple_server"
path = "examples/simple_server.rs"
[[example]]
name = "puller"
path = "examples/puller.rs"
[[example]]
name = "flv_recorder_client"
path = "examples/flv_recorder_client.rs"
[[example]]
name = "flv_recorder_server"
path = "examples/flv_recorder_server.rs"