Features
How it works
The library is available on crates.io. In example, through cargo-edit:
sh
cargo add online
toml
online = { version = "4.0.0", default-features = false, features = ["tokio"] }
📝 Please visit the tests and documentation to check the details.
```rust use online::check;
println!("Online? {}", check(None).isok()); println!("Online (timeout)? {}", check(Some(5)).isok()); ```