mirror of
https://github.com/Zenithsiz/zsw.git
synced 2026-02-03 09:50:31 +00:00
15 lines
386 B
TOML
15 lines
386 B
TOML
absolute-paths-allowed-crates = [
|
|
# `tokio` mirrors a lot of `std`'s api, so we want to explicitly mention when
|
|
# using `tokio`,
|
|
"tokio",
|
|
|
|
# `tracing_subscriber::fmt` makes this ambiguous with `std::fmt`
|
|
"tracing_subscriber",
|
|
|
|
# Crate consists of only nondescript modules
|
|
"naga_oil",
|
|
|
|
# Some modules are named generically, so we can't import them (e.g. `egui::util`)
|
|
"egui",
|
|
]
|