mirror of
https://github.com/openai/codex.git
synced 2026-02-01 22:47:52 +00:00
- add GitHub workflow running cargo-deny on push/PR - document cargo-deny allowlist with workspace-dep notes and advisory ignores - align workspace crates to inherit version/edition/license for consistent checks
18 lines
377 B
TOML
18 lines
377 B
TOML
[package]
|
|
name = "codex-ansi-escape"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
name = "codex_ansi_escape"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ansi-to-tui = { workspace = true }
|
|
ratatui = { workspace = true, features = [
|
|
"unstable-rendered-line-info",
|
|
"unstable-widget-ref",
|
|
] }
|
|
tracing = { workspace = true, features = ["log"] }
|