mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-28 07:30:54 +00:00
217c57cd60
Backend code is now moved to `ratatui-crossterm`, `ratatui-termion` and `ratatui-termwiz`. This should be backwards compatible with existing code. Co-authored-by: Josh McKinney <joshka@users.noreply.github.com>
24 lines
733 B
TOML
24 lines
733 B
TOML
avoid-breaking-exported-api = false
|
|
|
|
# https://rust-lang.github.io/rust-clippy/master/index.html#/multiple_crate_versions
|
|
# ratatui -> bitflags v2.3
|
|
# termwiz -> wezterm-blob-leases -> mac_address -> nix -> bitflags v1.3.2
|
|
# (also, memoffset, syn, nix, strsim, windows-sys
|
|
# crossterm -> all the windows- deps https://github.com/ratatui/ratatui/pull/1064#issuecomment-2078848980
|
|
allowed-duplicate-crates = [
|
|
"bitflags",
|
|
"memoffset",
|
|
"nix",
|
|
"strsim",
|
|
"syn",
|
|
"windows-sys",
|
|
"windows-targets",
|
|
"windows_aarch64_gnullvm",
|
|
"windows_aarch64_msvc",
|
|
"windows_i686_gnu",
|
|
"windows_i686_msvc",
|
|
"windows_x86_64_gnu",
|
|
"windows_x86_64_gnullvm",
|
|
"windows_x86_64_msvc",
|
|
"unicode-width",
|
|
]
|