Skip to content

Commit ab4de69

Browse files
authored
Merge pull request #3 from P1n3appl3/cargo-workspace
fix cargo workspace default-features inheritance
2 parents 102ebbb + ffc2156 commit ab4de69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ members = [
1818
imgproc = { version = "0.3.12", path = "imgproc" }
1919
yuv-sys = { version = "0.3.7", path = "yuv-sys" }
2020
libwebrtc = { version = "0.3.10", path = "libwebrtc" }
21-
livekit-api = { version = "0.4.2", path = "livekit-api" }
21+
livekit-api = { version = "0.4.2", path = "livekit-api", default-features = false }
2222
livekit-ffi = { version = "0.12.18", path = "livekit-ffi" }
2323
livekit-protocol = { version = "0.3.9", path = "livekit-protocol" }
24-
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
24+
livekit-runtime = { version = "0.4.0", path = "livekit-runtime", default-features = false }
2525
livekit = { version = "0.7.8", path = "livekit" }
2626
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
2727
webrtc-sys-build = { version = "0.3.6", path = "webrtc-sys/build" }

libwebrtc/src/native/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#[cfg(target_os = "android")]
1616
pub mod android;
1717
pub mod apm;
18-
pub mod audio_resampler;
1918
pub mod audio_mixer;
19+
pub mod audio_resampler;
2020
pub mod audio_source;
2121
pub mod audio_stream;
2222
pub mod audio_track;

0 commit comments

Comments
 (0)