mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
9bd89c218a
We need to make sure to not change existing methods without a notice. But at the same time this also finds public additions with mistakes before they are even released which is what I would like to have. This renames a method and deprecated the old name hinting to a new name. Should this be mentioned somewhere, so it's added to the release notes? It's not breaking because the old method is still there.
17 lines
594 B
TOML
17 lines
594 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
|
|
# crossterm -> all the windows- deps https://github.com/ratatui-org/ratatui/pull/1064#issuecomment-2078848980
|
|
allowed-duplicate-crates = [
|
|
"bitflags",
|
|
"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",
|
|
]
|