fix: gate tokio::time::sleep behind server feature #4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "development_hero_zero_standardize"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
tokio is only available under the server feature, but the cfg gate used target_arch which activates on native cargo check. Changed to cfg(all(not(wasm32), feature="server")) so it only compiles when tokio is actually available.
cargo check: clean (warnings only)
cargo test: 7 passed, 0 failed