diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-23 01:42:28 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-23 01:42:28 +0900 |
| commit | ae0f9c3ced9d07964a0bf2fe76f745aacc7dd34a (patch) | |
| tree | 964602f8ca32759c1e1de2c88f0871a673a8f1f4 /Cargo.lock | |
| parent | 82c89125dc6a1620ecd80949c155295a96db408c (diff) | |
| download | php-mozart-ae0f9c3ced9d07964a0bf2fe76f745aacc7dd34a.tar.gz php-mozart-ae0f9c3ced9d07964a0bf2fe76f745aacc7dd34a.tar.zst php-mozart-ae0f9c3ced9d07964a0bf2fe76f745aacc7dd34a.zip | |
fix(search): match Composer single-line output format with truncation
Replace two-line output (name+counts, indented description) with
Composer's single-line aligned format: padded name, abandoned warning,
and terminal-width-aware description truncation. Remove summary header
and download/faver count display from text output.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1089,6 +1089,7 @@ dependencies = [ "serde_json", "sha1", "tempfile", + "terminal_size", "tokio", "tracing", "tracing-subscriber", @@ -1933,6 +1934,16 @@ dependencies = [ ] [[package]] +name = "terminal_size" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" +dependencies = [ + "rustix", + "windows-sys 0.60.2", +] + +[[package]] name = "termtree" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" |
