diff --git a/examples/agent_dispatch/Cargo.toml b/examples/agent_dispatch/Cargo.toml index 110eae4a6..362c2ca75 100644 --- a/examples/agent_dispatch/Cargo.toml +++ b/examples/agent_dispatch/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit-api = { workspace = true, features = ["native-tls"] } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } env_logger = "0.10" log = "0.4" livekit-protocol = { workspace = true } diff --git a/examples/api/Cargo.toml b/examples/api/Cargo.toml index cd4ae27f2..fa071d369 100644 --- a/examples/api/Cargo.toml +++ b/examples/api/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit-api = { workspace = true } -futures = "0.3" +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } +futures = "0.3" \ No newline at end of file diff --git a/examples/basic_room/Cargo.toml b/examples/basic_room/Cargo.toml index 40ac1cf89..f8fb37910 100644 --- a/examples/basic_room/Cargo.toml +++ b/examples/basic_room/Cargo.toml @@ -7,6 +7,6 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } env_logger = "0.10" -livekit = { workspace = true } -livekit-api = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4" diff --git a/examples/basic_text_stream/Cargo.toml b/examples/basic_text_stream/Cargo.toml index 0b2fb9836..ccf9e89ee 100644 --- a/examples/basic_text_stream/Cargo.toml +++ b/examples/basic_text_stream/Cargo.toml @@ -7,6 +7,6 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } futures-util = { version = "0.3", default-features = false, features = ["sink"] } -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4.26" env_logger = "0.11.7" diff --git a/examples/encrypted_text_stream/Cargo.toml b/examples/encrypted_text_stream/Cargo.toml index 90ae10fd6..427221960 100644 --- a/examples/encrypted_text_stream/Cargo.toml +++ b/examples/encrypted_text_stream/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } futures-util = { version = "0.3", default-features = false, features = ["sink"] } -livekit = { workspace = true } -livekit-api = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4.26" env_logger = "0.11.7" diff --git a/examples/local_audio/Cargo.toml b/examples/local_audio/Cargo.toml index c89e0ec81..2e041e689 100644 --- a/examples/local_audio/Cargo.toml +++ b/examples/local_audio/Cargo.toml @@ -7,8 +7,8 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } env_logger = "0.10" -livekit = { workspace = true } -livekit-api = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } libwebrtc = { workspace = true } log = "0.4" cpal = "0.15" diff --git a/examples/mobile/Cargo.toml b/examples/mobile/Cargo.toml index e7485bdc4..ad14cf121 100644 --- a/examples/mobile/Cargo.toml +++ b/examples/mobile/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] lazy_static = "1.4.0" -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4.19" tokio = { version = "1", features = ["full"] } diff --git a/examples/play_from_disk/Cargo.toml b/examples/play_from_disk/Cargo.toml index 8d8569db9..a6de24bc1 100644 --- a/examples/play_from_disk/Cargo.toml +++ b/examples/play_from_disk/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } thiserror = "1.0.47" log = "0.4.20" env_logger = "0.10.0" diff --git a/examples/rpc/Cargo.toml b/examples/rpc/Cargo.toml index 81dba05c6..4c33ad8d0 100644 --- a/examples/rpc/Cargo.toml +++ b/examples/rpc/Cargo.toml @@ -7,8 +7,8 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } env_logger = "0.10" -livekit = { workspace = true } -livekit-api = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4" rand = "0.8" serde_json = "1.0" diff --git a/examples/save_to_disk/Cargo.toml b/examples/save_to_disk/Cargo.toml index 47470ff7f..95c28d790 100644 --- a/examples/save_to_disk/Cargo.toml +++ b/examples/save_to_disk/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] tokio = { version = "1", features = ["full"] } -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } bytes = "1.4.0" tokio-util = "0.7.8" futures = "0.3.28" diff --git a/examples/send_bytes/Cargo.toml b/examples/send_bytes/Cargo.toml index f42402a94..373e412a6 100644 --- a/examples/send_bytes/Cargo.toml +++ b/examples/send_bytes/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] tokio = { version = "1.47.1", features = ["full"] } -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"] } log = "0.4.28" env_logger = "0.11.8" bitfield-struct = "0.11.0" diff --git a/examples/webhooks/Cargo.toml b/examples/webhooks/Cargo.toml index 621e0da5d..e2ec09296 100644 --- a/examples/webhooks/Cargo.toml +++ b/examples/webhooks/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" publish = false [dependencies] -livekit-api = { workspace = true } +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } hyper = { version = "0.14", features = ["full"] } -tokio = { version = "1", features = ["full"] } +tokio = { version = "1", features = ["full"] } \ No newline at end of file diff --git a/examples/wgpu_room/Cargo.toml b/examples/wgpu_room/Cargo.toml index 36bb25c42..e3f93cad5 100644 --- a/examples/wgpu_room/Cargo.toml +++ b/examples/wgpu_room/Cargo.toml @@ -10,7 +10,7 @@ tracing = ["console-subscriber", "tokio/tracing"] [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit = { workspace = true } +livekit = { workspace = true, features = ["rustls-tls-native-roots"]} webrtc-sys = { workspace = true, features = [ "use_vaapi", "use_nvidia" ] } futures = "0.3" winit = { version = "0.30.11", features = [ "android-native-activity" ] }