A rust library to check if a string is an URL
In your Cargo.toml
add the following line after the dependencies
field.
is-url = "1.0.0"
This is an example usage someone might do.
```rust
use isurl::isurl;
fn main() { println!("{}", is_url("https://google.com")) // true } ```