squall_runtime/
lib.rs

1// src/lib.rs
2use std::future::Future;
3pub struct Runtime;
4impl Runtime {
5    pub fn spawn<F: Future<Output = ()> + Send + 'static>(&self, _f: F) { unimplemented!() }
6}