forked from kbalt/ezk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 852 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
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "ezk-rtc"
version = "0.1.0"
description = "SDP based media sessions"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
ice.workspace = true
log.workspace = true
rtp.workspace = true
sdp-types.workspace = true
stun-types.workspace = true
srtp.workspace = true
base64 = "0.22"
bytes = "1"
bytesstr = "1.0.2"
openssl = "0.10"
rand = "0.9"
slotmap = "1.0.7"
thiserror = "2"
time = "0.3"
tokio = { version = "1", features = [
"net",
"macros",
"time",
], default-features = false, optional = true }
quinn-udp = { version = "0.5", optional = true }
local-ip-address = { version = "0.6", optional = true }
[features]
default = ["tokio"]
tokio = ["dep:tokio", "dep:quinn-udp", "dep:local-ip-address"]
vendor-openssl = ["openssl/vendored"]