Skip to content

Commit bde3df6

Browse files
jamesjames
authored andcommitted
Refresh codex-rs mirror to upstream/main
1 parent fdffcd8 commit bde3df6

281 files changed

Lines changed: 17806 additions & 2282 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

codex-rs/Cargo.lock

Lines changed: 15 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codex-rs/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ rcgen = { version = "0.14.7", default-features = false, features = [
377377
regex = "1.12.3"
378378
regex-lite = "0.1.8"
379379
reqwest = { version = "0.12", features = ["cookies"] }
380-
rmcp = { version = "1.8.0", default-features = false }
380+
rmcp = { version = "=3.0.0-beta.3", default-features = false }
381381
runfiles = { git = "https://github.com/dzbarsky/rules_rust", rev = "b56cbaa8465e74127f1ea216f813cd377295ad81" }
382382
rustls = { version = "0.23", default-features = false, features = [
383383
"aws_lc_rs",
@@ -409,6 +409,7 @@ symphonia = { version = "0.6.0", default-features = false, features = [
409409
"wav",
410410
] }
411411
socket2 = "0.6.1"
412+
# When bumping sqlx, audit the SQLite constructor deny list in clippy.toml.
412413
sqlx = { version = "0.9.0", default-features = false, features = [
413414
"chrono",
414415
"json",
@@ -482,6 +483,7 @@ rust = {}
482483
[workspace.lints.clippy]
483484
await_holding_invalid_type = "deny"
484485
await_holding_lock = "deny"
486+
disallowed_methods = "deny"
485487
expect_used = "deny"
486488
identity_op = "deny"
487489
manual_clamp = "deny"
@@ -562,7 +564,7 @@ opt-level = 0
562564
[patch.crates-io]
563565
# Uncomment to debug local changes.
564566
# ratatui = { path = "../../ratatui" }
565-
crossterm = { git = "https://github.com/nornagon/crossterm", rev = "87db8bfa6dc99427fd3b071681b07fc31c6ce995" }
567+
crossterm = { git = "https://github.com/openai-oss-forks/crossterm", rev = "87db8bfa6dc99427fd3b071681b07fc31c6ce995" }
566568
ratatui = { git = "https://github.com/nornagon/ratatui", rev = "9b2ad1298408c45918ee9f8241a6f95498cdbed2" }
567569
tokio-tungstenite = { git = "https://github.com/openai-oss-forks/tokio-tungstenite", rev = "0e5b2d73aa18dd9f0a50ee9ff199d5aef7594186" }
568570
tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "4fffad30fe373adbdcffab9545e9e9bf4f2fc19f" }

codex-rs/analytics/src/analytics_client_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ fn sample_thread_with_metadata(
204204
parent_thread_id,
205205
preview: "first prompt".to_string(),
206206
ephemeral,
207-
is_pinned: false,
207+
section: None,
208208
history_mode: Default::default(),
209209
model_provider: "openai".to_string(),
210210
created_at: 1,

codex-rs/analytics/src/client_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ fn sample_thread(thread_id: &str) -> Thread {
479479
parent_thread_id: None,
480480
preview: "first prompt".to_string(),
481481
ephemeral: false,
482-
is_pinned: false,
482+
section: None,
483483
history_mode: Default::default(),
484484
model_provider: "openai".to_string(),
485485
created_at: 1,

0 commit comments

Comments
 (0)