Skip to content

Commit

Permalink
fix: don't get tokio as a bonus (sub)dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
pylls committed Sep 9, 2024
1 parent d575499 commit fcfddcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/maybenot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ bincode = "1.3.3"
base64 = "0.22.0"
flate2 = "1.0.28"
enum-map = "2.7.3"
sha256 = "1.5.0"
sha256 = {version = "1.5.0", default-features = false}
rand_core = "0.6.4"
1 change: 1 addition & 0 deletions crates/maybenot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ and executing scheduled actions. Maybenot does not specify the specific async
runtime or how to keep time for ease of integration.

## Example usage

```rust,no_run
use crate::{Framework, Machine, TriggerAction, TriggerEvent};
use std::{str::FromStr, time::Instant};
Expand Down

0 comments on commit fcfddcc

Please sign in to comment.