cargo install usaddress
or
[dependencies]
usaddress = "0.1"
```bash usaddress "170th St and Broadway Ave New York, NY 10033"
or usage of the library
```rust
match usaddress::parse("170th St and Broadway Ave New York, NY 10033") { Ok(tagged_addresses) => { ... }, Err(e) => { ... } } ```