mirror of
https://github.com/openai/codex.git
synced 2026-04-27 08:05:51 +00:00
Adds the `[realtime].transport = "webrtc"` TUI media path using a new `codex-realtime-webrtc` crate, while leaving app-server as the signaling/event source.\n\nLocal checks: fmt, diff-check, dependency tree only; test signal should come from CI. --------- Co-authored-by: Codex <noreply@openai.com>
20 lines
499 B
TOML
20 lines
499 B
TOML
[package]
|
|
name = "codex-realtime-webrtc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_realtime_webrtc"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
libwebrtc = { version = "0.3.26", git = "https://github.com/juberti-oai/rust-sdks.git", rev = "e2d1d1d230c6fc9df171ccb181423f957bb3c1f0" }
|
|
|
|
[lints]
|
|
workspace = true
|