13 个版本

0.1.12 2023年12月18日
0.1.11 2023年11月20日
0.1.10 2023年10月15日
0.1.2 2023年9月23日
0.0.0 2020年5月15日

#1745 in 网络编程


hop-cli 中使用

MPL-2.0 许可证

105KB
2.5K SLoC

hop

此包提供了对 Hop API 的 Rust 接口。

安装

将以下内容添加到您的 Cargo.toml 文件中

[dependencies]
hop = "0.1.0"

用法

use hop::{Hop, HopOptions};

let hop = Hop::new_with_options(HopOptions {
    token: Some("your-token".to_string()),
    ..Default::default()
});

let me = hop.users.me().await?;

println!("Hello, {}!", me.user.name);

依赖项

~4–16MB
~244K SLoC