2 个不稳定版本

使用旧的 Rust 2015

0.2.0 2018年8月21日
0.1.0 2018年8月19日

#6 in #spacex

MIT/Apache

8KB
132 代码行

用 Rust 编写的 SpaceX API 包装器

GitHub issues GitHub stars GitHub license

API 参考

查看完整的 API 参考 此处

安装

通过 cargo,将以下内容添加到您的项目 Cargo.toml

[dependencies]
spacex-api-wrapper = "0.1.0"

使用示例

extern crate spacex_api_wrapper;
use spacex_api_wrapper::SpaceXAPI;

let spacex_api = SpaceXAPI::new(None, None, None);
spacex_api.get_company_info()
    .wait()
    .map(|mut b| {
        println!("{:?}", b.text());
    });

依赖项

~14–23MB
~409K SLoC