jito-client 0.1.7

A Rust client for interacting with the Solana Jito network, supporting rate limiting, multi-IP usage, and broadcasting requests to multiple endpoints.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use rustc_version::{Version, version};

fn main() {
    if let Ok(v) = version() {
        if v >= Version::new(1, 85, 0) {
            println!("cargo::rustc-cfg=rustc_version_1_85_0");
        }
    }

    println!("cargo::rustc-check-cfg=cfg(rustc_version_1_85_0)");
}