mirror of
https://github.com/openai/codex.git
synced 2026-04-26 07:35:29 +00:00
Compile websocket-only exports out of codex-api on wasm and stop enabling Tokio net there by default. Also cut the Tokio process dependency out of wasm builds of codex-git-utils by gating the async git-info module, move codex-utils-image's Tokio dependency to tests, and enable uuid's js RNG feature for wasm in codex-protocol. Native cargo checks passed for codex-api, codex-git-utils, and codex-protocol after the refactor.
10 lines
212 B
Rust
10 lines
212 B
Rust
pub mod compact;
|
|
pub mod memories;
|
|
pub mod models;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub mod realtime_websocket;
|
|
pub mod responses;
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
pub mod responses_websocket;
|
|
mod session;
|