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
50 lines (44 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.1 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
46
47
48
49
50
[package]
name = "ezk-sip-core"
version = "0.8.2"
description = "SIP core crate providing abstrations over transport and transactions"
categories = ["network-programming", "multimedia"]
keywords = ["sip"]
readme = "README.md"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
internal.workspace = true
sip-types.workspace = true
stun-types.workspace = true
stun.workspace = true
tracing = "0.1"
bytes = "1"
tokio = { version = "1", features = [
"net",
"rt-multi-thread",
"sync",
"macros",
"io-util",
] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = "0.1"
async-trait = "0.1"
log = "0.4"
thiserror = "2"
parking_lot = "0.12"
rand = "0.9"
bytesstr = "1"
downcast-rs = "2"
hickory-resolver = "0.25.0"
multimap = "0.10"
tokio-rustls = { workspace = true, optional = true }
rustls-pki-types = { workspace = true, optional = true }
tokio-native-tls = { workspace = true, optional = true }
[features]
tls-rustls = ["dep:tokio-rustls", "dep:rustls-pki-types"]
tls-native-tls = ["dep:tokio-native-tls"]