90 个版本 (42 个稳定版)

1.3.11 2023年3月19日
1.3.10 2022年10月31日
1.3.8 2022年9月6日
1.3.3 2022年7月19日
0.1.4 2020年12月30日

#2870魔法豆

Download history • Rust 包仓库 59/week @ 2024-04-17 • Rust 包仓库 58/week @ 2024-04-24 • Rust 包仓库 54/week @ 2024-05-01 • Rust 包仓库 57/week @ 2024-05-08 • Rust 包仓库 54/week @ 2024-05-15 • Rust 包仓库 55/week @ 2024-05-22 • Rust 包仓库 55/week @ 2024-05-29 • Rust 包仓库 68/week @ 2024-06-05 • Rust 包仓库 59/week @ 2024-06-12 • Rust 包仓库 58/week @ 2024-06-19 • Rust 包仓库 50/week @ 2024-06-26 • Rust 包仓库 44/week @ 2024-07-03 • Rust 包仓库 49/week @ 2024-07-10 • Rust 包仓库 53/week @ 2024-07-17 • Rust 包仓库 65/week @ 2024-07-24 • Rust 包仓库 43/week @ 2024-07-31 • Rust 包仓库

218 每月下载
2 个crate中使用(通过 crypto-crawler

Apache-2.0

190KB
5K SLoC

crypto-markets

从加密货币交易所获取交易市场。

示例

use crypto_markets::{fetch_markets, MarketType};

fn main() {
    let markets = fetch_markets("Binance", MarketType::Spot).unwrap();
    println!("{}", serde_json::to_string_pretty(&markets).unwrap())
}

lib.rs:

获取一个加密货币交易所的所有交易对。

示例

use crypto_markets::fetch_markets;
use crypto_market_type::MarketType;

let markets = fetch_markets("binance", MarketType::Spot).unwrap();
println!("{}", serde_json::to_string_pretty(&markets).unwrap())

依赖项

~5–16MB
~249K SLoC