mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-07 13:40:36 +02:00
* gnu/packages/patches/codex-0.98.0-remove-patch-sections.patch: New file. * gnu/packages/patches/rust-codex-0.98.0-test-shebangs.patch: New file. * gnu/packages/patches/rust-codex-0.98.0-test-timeout.patch: New file. * gnu/packages/patches/rust-codex-0.98.0-windows-sandbox-protocol-version.patch: New file. * gnu/local.mk (dist_patch_DATA): Add references to the patches. * gnu/packages/rust-apps.scm (codex): New variable. * gnu/packages/rust-crates.scm: Add crates. * gnu/packages/rust-sources.scm (rust-codex-0.98.0): New variable. Change-Id: Ic4af28034cbae83a7e212ee328cbdc25bce31ef0
24 lines
874 B
Diff
24 lines
874 B
Diff
Author: Danny Milosavljevic <dannym@friendly-machines.com>
|
|
Date: 2026-02-25
|
|
License: ASL2.0
|
|
Subject: Add version to codex-protocol dependency in windows-sandbox-rs.
|
|
|
|
The codex-protocol dependency in windows-sandbox-rs uses the TOML table
|
|
format with an explicit path, rather than workspace inheritance
|
|
(workspace = true). Because it is not an intra-workspace dependency,
|
|
cargo cannot resolve its version from the workspace root Cargo.toml
|
|
and cargo package fails with "dependency `codex-protocol` does not
|
|
specify a version".
|
|
|
|
diff -u a/codex-rs/windows-sandbox-rs/Cargo.toml b/codex-rs/windows-sandbox-rs/Cargo.toml
|
|
--- a/codex-rs/windows-sandbox-rs/Cargo.toml
|
|
+++ b/codex-rs/windows-sandbox-rs/Cargo.toml
|
|
@@ -38,6 +38,7 @@
|
|
[dependencies.codex-protocol]
|
|
package = "codex-protocol"
|
|
path = "../protocol"
|
|
+version = "0.0.0"
|
|
|
|
[dependencies.rand]
|
|
default-features = false
|