fix: gate tokio::time::sleep behind server feature #4
No reviewers
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_wasmos!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