Skip to content

Commit

Permalink
Remove default dependency on tokio
Browse files Browse the repository at this point in the history
  • Loading branch information
mikayla-maki committed Dec 3, 2024
1 parent 85a072d commit 1f6af33
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions livekit-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,8 @@ edition = "2021"
repository = "https://github.com/livekit/rust-sdks"

[features]
default = ["tokio"]
tokio = ["dep:tokio", "dep:tokio-stream"]
async = [
"dep:async-std",
"dep:futures",
"dep:async-io",
]
async = ["dep:async-std", "dep:futures", "dep:async-io"]
dispatcher = ["dep:futures", "dep:async-io", "dep:async-std", "dep:async-task"]

[dependencies]
Expand All @@ -30,4 +25,4 @@ futures = { version = "0.3.30", optional = true }
async-io = { version = "2.3.1", optional = true }

# dispatcher
async-task = {version = "4.7.0", optional = true }
async-task = { version = "4.7.0", optional = true }

0 comments on commit 1f6af33

Please sign in to comment.