-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 942 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
35
[package]
name = "silence"
version = "0.1.3"
edition = "2021"
description = "A crate for creating voip services the easiest and the most reliable way."
license = "Apache-2.0"
categories = ["asynchronous", "network-programming", "accessibility"]
[features]
default = ["voice", "udp"]
video = ["silence-core/opus", "silence-core/io"]
voice = ["silence-core/opencv", "silence-core/av1"]
client = []
server = []
udp = ["tokio/net"]
all = ["video", "voice", "server", "client", "udp"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
anyhow = "1.0.93"
dashmap = "6.1.0"
parking_lot = "0.12.3"
rmp-serde = "1.3.0"
serde = {version = "1.0.215", features = ["derive"]}
silence-core = {version = "0.1.11", optional = true, features = ["serde"]}
thiserror = "2.0.3"
tokio = {version = "1.41.1", features = ["rt", "macros"]}
tokio-util = "0.7.12"
tracing = "0.1.41"
uuid = {version = "1.11.0", features = ["v4", "fast-rng", "serde"]}