23 lines
553 B
TOML
23 lines
553 B
TOML
[package]
|
|
name = "livekit-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio-tungstenite = { version = "0.17.2", features = ["native-tls"] }
|
|
tokio = { version = "1", features = ["full", "tracing"] }
|
|
futures = "0.3"
|
|
url = "2.2.2"
|
|
futures-util = "0.3.23"
|
|
thiserror = "1.0"
|
|
prost = "0.11.0"
|
|
prost-types = "0.11.1"
|
|
anyhow = "1.0.63"
|
|
livekit-webrtc = { path = "../livekit-webrtc" }
|
|
lazy_static = "1.4.0"
|
|
tracing = "0.1"
|
|
|
|
[build-dependencies]
|
|
prost-build = { version = "0.11.1" } |