Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mauro-balades/is-url

A rust library to check if a string is an URL
https://github.com/mauro-balades/is-url

is-url rust rust-packages

Last synced: 2 days ago
JSON representation

A rust library to check if a string is an URL

Awesome Lists containing this project

README

        

# is-url

A rust library to check if a string is an URL

## Installation

In your `Cargo.toml` add the following line after the `dependencies` field.

```
is-url = "1.0.4"
```

## Usage

This is an example usage someone might do.

```rust

use is_url::is_url;

fn main() {
println!("{}", is_url("https://crates.io")) // true
}
```