-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (46 loc) · 1.55 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
[package]
name = "livekit-ffi"
version = "0.12.40"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
repository = "https://github.com/livekit/rust-sdks"
readme = "README.md"
[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 = { version = "1", features = ["full", "parking_lot"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
prost = "0.14.1"
lazy_static = "1.4"
thiserror = "1.0"
log = "0.4"
dashmap = "5.4"
env_logger = "0.10"
downcast-rs = "1.2"
console-subscriber = { version = "0.1", features = ["parking_lot"], optional = true }
bytes = "1.10.1"
from_variants = "1.0.2"
[target.'cfg(target_os = "android")'.dependencies]
jni = "0.21.1"
link-cplusplus = { version = "1", features = ["nothing"] }
[build-dependencies]
prost-build = "0.14.1"
webrtc-sys-build = { workspace = true }
[dev-dependencies]
livekit-api = { workspace = true }
[lib]
crate-type = ["lib", "staticlib", "cdylib"]