codex-python 0.2.8__tar.gz → 0.2.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codex_python-0.2.8 → codex_python-0.2.10}/PKG-INFO +1 -1
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/__init__.py +1 -1
- {codex_python-0.2.8 → codex_python-0.2.10}/crates/codex_native/Cargo.lock +4 -3
- {codex_python-0.2.8 → codex_python-0.2.10}/crates/codex_native/Cargo.toml +2 -1
- {codex_python-0.2.8 → codex_python-0.2.10}/LICENSE +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/README.md +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/api.py +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/config.py +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/event.py +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/native.py +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/protocol/types.py +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/codex/py.typed +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/crates/codex_native/src/lib.rs +0 -0
- {codex_python-0.2.8 → codex_python-0.2.10}/pyproject.toml +0 -0
|
@@ -253,7 +253,7 @@ dependencies = [
|
|
|
253
253
|
|
|
254
254
|
[[package]]
|
|
255
255
|
name = "codex_native"
|
|
256
|
-
version = "0.2.
|
|
256
|
+
version = "0.2.10"
|
|
257
257
|
dependencies = [
|
|
258
258
|
"anyhow",
|
|
259
259
|
"codex-core",
|
|
@@ -263,6 +263,7 @@ dependencies = [
|
|
|
263
263
|
"serde",
|
|
264
264
|
"serde_json",
|
|
265
265
|
"tokio",
|
|
266
|
+
"toml",
|
|
266
267
|
"tracing",
|
|
267
268
|
]
|
|
268
269
|
|
|
@@ -1123,9 +1124,9 @@ dependencies = [
|
|
|
1123
1124
|
|
|
1124
1125
|
[[package]]
|
|
1125
1126
|
name = "landlock"
|
|
1126
|
-
version = "0.4.
|
|
1127
|
+
version = "0.4.3"
|
|
1127
1128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "
|
|
1129
|
+
checksum = "affe8b77dce5b172f8e290bd801b12832a77cd1942d1ea98259916e89d5829d6"
|
|
1129
1130
|
dependencies = [
|
|
1130
1131
|
"enumflags2",
|
|
1131
1132
|
"libc",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "codex_native"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.10"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
|
|
6
6
|
[lib]
|
|
@@ -12,6 +12,7 @@ pyo3 = { version = "0.26", features = ["extension-module", "abi3-py312"] }
|
|
|
12
12
|
anyhow = "1"
|
|
13
13
|
serde = { version = "1", features = ["derive"] }
|
|
14
14
|
serde_json = "1"
|
|
15
|
+
toml = "0.9"
|
|
15
16
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "process", "time"] }
|
|
16
17
|
tracing = "0.1"
|
|
17
18
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|