Commit Graph

8 Commits

Author SHA1 Message Date
Taiki Endo c1b8fae3cc Fix clippy::or_fun_call warning in example
```
warning: use of `unwrap_or` followed by a function call
  --> examples/ls.rs:15:35
   |
15 |     let path = env::args().nth(1).unwrap_or(".".into());
   |                                   ^^^^^^^^^^^^^^^^^^^^^ help: try this: `unwrap_or_else(|| ".".into())`
   |
   = note: `#[warn(clippy::or_fun_call)]` on by default
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call
```
2022-07-17 21:37:47 +09:00
Stjepan Glavina 6ea0edac10 Update futures-lite 2020-10-09 14:25:10 +02:00
Stjepan Glavina c2175437bd Simplify the API 2020-07-21 20:41:03 +02:00
Stjepan Glavina da7d409fb3 Simplify dependencies 2020-07-19 17:51:43 +02:00
Stjepan Glavina 23202f78b1 block_on and unblock 2020-05-17 15:06:49 +02:00
Stjepan Glavina 1caf501270 Rename blocking to unblock 2020-05-16 00:02:40 +02:00
Stjepan Glavina 98f379969f Remove stray example 2020-05-09 21:09:36 +02:00
Stjepan Glavina 43b1991fc8 Initial commit 2020-05-09 21:06:27 +02:00