4个版本 (2个破坏性更新)

0.4.0 2023年4月2日
0.2.0 2021年5月21日
0.1.2 2021年4月12日
0.1.0 2021年4月7日

#5 in #team-speak


ts3中使用

MIT/Apache

4KB
63

TS3

Crates.io Docs.rs

一个完全异步的库,用于与TeamSpeak 3服务器查询接口交互。有关文档,请参阅此处

使用方法

ts3添加到您的Cargo.toml

ts3 = "0.4.0"

基本示例使用

use ts3::Client;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
    // Create a new client
    let client = Client::new("127.0.0.1:10011").await?;

    // Connect to virtualserver 1
    client.use_sid(1).await?;

    // Use whoami to fetch info about the query client
    let data = client.whoami().await?;

    println!("{}", data);
}

有关文档和更多示例,请参阅docs.rs

许可协议

许可协议为以下之一

依赖关系

~1.5MB
~35K SLoC