• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This config file is for the `cargo-check-external-types` tool that is run in CI.
2
3# The following are types that are allowed to be exposed in Tokio's public API.
4# The standard library is allowed by default.
5allowed_external_types = [
6   "bytes::buf::buf_impl::Buf",
7   "bytes::buf::buf_mut::BufMut",
8
9   "tokio_macros::*",
10]
11
12