### Chores - Update cargo dependencies - Remove unused cargo dependencies - Fix clippy warnings - Update Dockerfile (package.json requires node 22) - Let Dependabot update bun, cargo, devcontainers, docker, github-actions, npm (nix still not supported) ### TODO - Upgrade dependencies with breaking changes ```shell $ cargo update --verbose Unchanged crossterm v0.28.1 (available: v0.29.0) Unchanged schemars v0.8.22 (available: v1.0.4) ```
20 lines
464 B
TOML
20 lines
464 B
TOML
[package]
|
|
name = "codex-common"
|
|
version = { workspace = true }
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive", "wrap_help"], optional = true }
|
|
codex-core = { path = "../core" }
|
|
toml = { version = "0.9", optional = true }
|
|
serde = { version = "1", optional = true }
|
|
|
|
[features]
|
|
# Separate feature so that `clap` is not a mandatory dependency.
|
|
cli = ["clap", "toml", "serde"]
|
|
elapsed = []
|
|
sandbox_summary = []
|