crypto-pair 2.2.5

Parse exchange-specific symbols to unified format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# crypto-pair

[![](https://img.shields.io/github/workflow/status/crypto-crawler/crypto-crawler-rs/CI/main)](https://github.com/crypto-crawler/crypto-crawler-rs/actions?query=branch%3Amain)
[![](https://img.shields.io/crates/v/crypto-pair.svg)](https://crates.io/crates/crypto-pair)
[![](https://docs.rs/crypto-pair/badge.svg)](https://docs.rs/crypto-pair)
==========

Parse exchange-specific symbols to unified format.

## Usage

```rust
use crypto_pair::fetch_markets;

fn main() {
    assert_eq!(Some("BTC/USD".to_string()), normalize_pair("XBTH21", "BitMEX"));
}
```