From 801f41e68e79e47e2c05e75d0b17c9b3734644fd Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Wed, 5 Jul 2023 12:15:56 -0700 Subject: [PATCH] Move audio dependency to dev --- Cargo.lock | 1 + crates/collab/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index c6a67d47ef..ac089cee18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1405,6 +1405,7 @@ version = "0.16.0" dependencies = [ "anyhow", "async-tungstenite", + "audio", "axum", "axum-extra", "base64 0.13.1", diff --git a/crates/collab/Cargo.toml b/crates/collab/Cargo.toml index 8bd86ed9ec..c61fdeebfb 100644 --- a/crates/collab/Cargo.toml +++ b/crates/collab/Cargo.toml @@ -57,6 +57,7 @@ tracing-log = "0.1.3" tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] } [dev-dependencies] +audio = { path = "../audio" } collections = { path = "../collections", features = ["test-support"] } gpui = { path = "../gpui", features = ["test-support"] } call = { path = "../call", features = ["test-support"] }