This commit is contained in:
sxyazi 2025-04-30 22:33:35 +08:00
parent f19a30063a
commit dd2fd6d6ef
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View file

@ -22,3 +22,6 @@ parking_lot = { workspace = true }
[target."cfg(unix)".dependencies]
libc = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }

View file

@ -20,3 +20,6 @@ crossterm = { workspace = true }
futures = { workspace = true }
ratatui = { workspace = true }
unicode-width = { workspace = true }
[target.'cfg(target_os = "macos")'.dependencies]
crossterm = { workspace = true, features = [ "use-dev-tty", "libc" ] }