Skip to content

Commit ca8bd09

Browse files
authored
chore: simplify dep so serde=1 in Cargo.toml (#3664)
With this change, dependabot should just have to update `Cargo.lock` for `serde`, e.g.: - #3617 - #3618
1 parent 39ed8a7 commit ca8bd09

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

codex-rs/execpolicy/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2+
edition = "2024"
23
name = "codex-execpolicy"
34
version = { workspace = true }
4-
edition = "2024"
55

66
[[bin]]
77
name = "codex-execpolicy"
@@ -15,19 +15,19 @@ path = "src/lib.rs"
1515
workspace = true
1616

1717
[dependencies]
18-
anyhow = "1"
19-
starlark = "0.13.0"
2018
allocative = "0.3.3"
19+
anyhow = "1"
2120
clap = { version = "4", features = ["derive"] }
2221
derive_more = { version = "2", features = ["display"] }
2322
env_logger = "0.11.5"
2423
log = "0.4"
2524
multimap = "0.10.0"
2625
path-absolutize = "3.1.1"
2726
regex-lite = "0.1"
28-
serde = { version = "1.0.194", features = ["derive"] }
29-
serde_json = "1.0.145"
27+
serde = { version = "1", features = ["derive"] }
28+
serde_json = "1"
3029
serde_with = { version = "3", features = ["macros"] }
30+
starlark = "0.13.0"
3131

3232
[dev-dependencies]
3333
tempfile = "3.13.0"

codex-rs/file-search/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ clap = { version = "4", features = ["derive"] }
1717
ignore = "0.4.23"
1818
nucleo-matcher = "0.3.1"
1919
serde = { version = "1", features = ["derive"] }
20-
serde_json = "1.0.145"
20+
serde_json = "1"
2121
tokio = { version = "1", features = ["full"] }

0 commit comments

Comments
 (0)