disallowed-macros = [
{ path = "std::println", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
{ path = "std::eprintln", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
{ path = "std::print", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
{ path = "std::eprint", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
{ path = "std::dbg", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
]
disallowed-methods = [
{ path = "std::io::stdout", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
{ path = "std::io::stderr", reason = "library core must not write to stdout/stderr (RFC-016, RFC-005, RFC-013)" },
]