-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (40 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (40 loc) · 1.11 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
[package]
name = "rvoip-webtransport"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
authors.workspace = true
rust-version.workspace = true
categories.workspace = true
keywords.workspace = true
description = "rvoip-core ConnectionAdapter implementation over WebTransport (HTTP/3 + QUIC) for the UCTP application protocol"
[dependencies]
rvoip-core.workspace = true
rvoip-uctp.workspace = true
rvoip-auth-core.workspace = true
tokio = { workspace = true }
tokio-util.workspace = true
async-trait.workspace = true
futures.workspace = true
dashmap.workspace = true
parking_lot.workspace = true
bytes.workspace = true
chrono.workspace = true
serde_json.workspace = true
quinn.workspace = true
web-transport-quinn.workspace = true
rustls.workspace = true
url = "2"
http = "1"
tracing.workspace = true
metrics.workspace = true
thiserror.workspace = true
[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }
tracing-subscriber.workspace = true
serde_json.workspace = true
[lints]
workspace = true