tdlib-rs 1.4.0

Rust wrapper around the Telegram Database Library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// cargo run -p tdlib-rs --example test_ci --features default
// cargo run -p tdlib-rs --example test_ci --features download-tdlib
// cargo run -p tdlib-rs --example test_ci --features pkg-config

#[tokio::main]
async fn main() {
    // Create the client object for testing
    let _client_id = tdlib_rs::create_client();

    // Exit 0
    std::process::exit(0);
}