返回 CodeWhale
Cargo.toml
根目录 / pet / tui / Cargo.toml
1 [package]
2 name = "codewhale-pet-tui"
3 version = "0.1.0"
4 edition = "2024"
5
6 [dependencies]
7 ratatui = "=0.30.2"
8 unicode-width = "=0.2.2"
9
10 # unicode-width isn't in the offline registry cache; codewhale already vendors
11 # a patched 0.2.2, so reuse it verbatim rather than vendoring a second copy.
12 [patch.crates-io]
13 unicode-width = { path = "../../patches/unicode-width-0.2.2" }
14
15 [workspace]
16
16 lines TOML