crypto-pair 2.3.4

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
# crypto-pair

[![](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::normalize_pair;

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