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中使用
4KB
63 行
TS3
一个完全异步的库,用于与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。
许可协议
许可协议为以下之一
- MIT许可协议或
- Apache许可协议,版本2.0,任选其一。
依赖关系
~1.5MB
~35K SLoC