| disallowed-methods = [ |
| { path = "tokio::task::spawn", reason = "To provide cancel-safety, use `SpawnedTask::spawn` instead (https://github.com/apache/datafusion/issues/6513)" }, |
| { path = "tokio::task::spawn_blocking", reason = "To provide cancel-safety, use `SpawnedTask::spawn_blocking` instead (https://github.com/apache/datafusion/issues/6513)" }, |
| ] |
| |
| disallowed-types = [ |
| { path = "std::time::Instant", reason = "Use `datafusion_common::instant::Instant` instead for WASM compatibility" }, |
| ] |
| |
| # Lowering the threshold to help prevent stack overflows (default is 16384) |
| # See: https://rust-lang.github.io/rust-clippy/master/index.html#/large_futures |
| future-size-threshold = 10000 |