mirror of
https://github.com/Zenithsiz/zsw.git
synced 2026-02-08 20:44:22 +00:00
18 lines
519 B
TOML
18 lines
519 B
TOML
absolute-paths-allowed-crates = [
|
|
# `winit::event::Event` would be ambigous with just `event::Event` or `Event`.
|
|
"winit",
|
|
|
|
# `tokio` mirrors a lot of `std`'s api, so we want to explicitly mention when
|
|
# using `tokio`,
|
|
"tokio",
|
|
|
|
# `tracing_subscriber::fmt` makes this ambigious with `std::fmt`
|
|
"tracing_subscriber",
|
|
|
|
# Since this lint triggers for enum variants, and the following crates have
|
|
# types that would be ambigious without the crate name, we allow them.
|
|
"wgpu",
|
|
"async_channel",
|
|
"async_walkdir",
|
|
]
|