-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (48 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (48 loc) · 1.68 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
51
52
53
54
55
[package]
name = "livekit-ffi"
version = "0.12.69"
edition.workspace = true
license.workspace = true
description = "FFI interface for bindings in other languages"
repository.workspace = true
readme = "README.md"
publish = false
[features]
default = ["rustls-tls-native-roots"]
native-tls = ["livekit/native-tls"]
native-tls-vendored = ["livekit/native-tls-vendored"]
rustls-tls-native-roots = ["livekit/rustls-tls-native-roots"]
rustls-tls-webpki-roots = ["livekit/rustls-tls-webpki-roots"]
__rustls-tls = ["livekit/__rustls-tls"]
# Enable tokio-console to debug tasks
tracing = ["tokio/tracing", "console-subscriber"]
[dependencies]
livekit = { workspace = true }
webrtc-sys = { workspace = true }
soxr-sys = { workspace = true }
imgproc = { workspace = true }
livekit-protocol = { workspace = true }
tokio = { workspace = true, features = ["full", "parking_lot"] }
futures-util = { workspace = true, default-features = false, features = ["sink"] }
parking_lot = { workspace = true, features = ["deadlock_detection"] }
prost = { workspace = true }
lazy_static = { workspace = true }
thiserror = { workspace = true }
log = { workspace = true }
dashmap = "6.2"
env_logger = { workspace = true }
downcast-rs = "1.2"
console-subscriber = { workspace = true, features = ["parking_lot"], optional = true }
bytes = { workspace = true }
from_variants = "1.0.2"
[target.'cfg(target_os = "android")'.dependencies]
jni = "0.21.1"
link-cplusplus = { version = "1", features = ["nothing"] }
device-info = { workspace = true }
[build-dependencies]
prost-build = { workspace = true }
webrtc-sys-build = { workspace = true }
[dev-dependencies]
livekit-api = { workspace = true }
[lib]
crate-type = ["lib", "staticlib", "cdylib"]