TGViewer
CCXT Announcements CCXT Announcements @ccxt_announcements · 840 subscribers
Post #139 421
Hello, CCXT community! 👋

We're excited to announce the public release of the Rust version of CCXT, starting from version 4.5.78 🚀

Rust stable (edition 2021) and a tokio runtime are required.

The crates are available on crates.io:

https://crates.io/crates/ccxt - REST exchanges
https://crates.io/crates/ccxt-pro - WebSocket (watch_*) exchanges
https://crates.io/crates/ccxt-prediction - prediction markets

Example

use ccxt::{Binance, Config, Params};

#[tokio::main]
async fn main() -> Result<(), ccxt::ExchangeError> {
let mut exchange = Binance::with_config(
Config::new()
.api_key("your api key")
.secret("your secret"),
);

let order = exchange
.create_order("ETH/USDT", "market", "buy", 0.5, None, Params::none())
.await?;
println!("{:?} {:?}", order.id, order.status);

Ok(())
}


You can check some examples here: https://github.com/ccxt/ccxt/tree/master/examples/rust

Thank you for using CCXT!

Yours, the CCXT Dev Team. ✅
  • 🔥 23
  • 👍 3
  • ❤ 2
  • 👏 2
More from @ccxt_announcements
  1. Sep 19, 2026📘 4.5.81 released! Upgrade now to take advantage of: 🔧 Updates & Fixes: Upgrade to v4.5.…
  2. Sep 17, 2026🇸🇬 CCXT is coming to TOKEN2049 Singapore! We’d love to meet members of the CCXT communit…
  3. Sep 14, 2026Hello, CCXT community! 👋 🚀 Introducing ccxt-mcp — the official CCXT MCP server Give your…
  4. Sep 4, 2026⏰ Last call — registration closes Monday The BTSE × CCXT Trading Competition registration…
  5. Sep 1, 2026Hello, CCXT community! 👋 We are happy to announce the integration of the Revolut X exchan…
  6. Sep 1, 2026📘 4.5.77 released! Upgrade now to take advantage of: 🔧 Updates & Fixes: - bybit: normali…
Threads Profile ViewerView any public Threads profile without an account.Open ThreadLook →Writing with AI? Make it sound human.Metric37 rewrites AI drafts so they read naturally. Free AI detector, 1,500 words free.Try Metric37 →