Some effects of this change: - New formatting changes across many files. No functionality changes should occur from that. - Calls to `set_env` are considered unsafe, since this only happens in tests we wrap them in `unsafe` blocks
17 lines
328 B
TOML
17 lines
328 B
TOML
[package]
|
|
name = "codex-ansi-escape"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "codex_ansi_escape"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
ansi-to-tui = "7.0.0"
|
|
ratatui = { version = "0.29.0", features = [
|
|
"unstable-widget-ref",
|
|
"unstable-rendered-line-info",
|
|
] }
|
|
tracing = { version = "0.1.41", features = ["log"] }
|