6 个版本 (3 个重大变更)

0.7.0 2024 年 2 月 5 日
0.6.0 2022 年 6 月 5 日
0.5.0 2022 年 3 月 3 日
0.4.2 2021 年 12 月 3 日
0.4.1 2021 年 11 月 30 日

#472 in 数学

每月 24 次下载

MIT/Apache

23KB
240

iseven_api

Crates.io Version Crates.io License GitHub Actions Workflow Status

A Rust 封装 isEven API

包括库以及一个简单的命令行前端。

命令行应用程序

安装

cargo install iseven_api --all-features

从源码构建

git clone https://github.com/megascrapper/iseven-api-rust
cd iseven-api
cargo build --all-features

命令行使用方法

Checks whether a number is even or odd using isEven API (https://isevenapi.xyz/)

Usage: iseven_api [OPTIONS] <NUMBER>

Arguments:
  <NUMBER>  Number to check

Options:
      --json  Print JSON response
  -h, --help  Print help

添加依赖项

cargo add iseven_api

库使用示例

use std::error::Error;
use iseven_api::IsEvenApiClient;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    // Initialise the client
    let client = IsEvenApiClient::new();

    // Make requests
    let odd_num = client.get(41).await?;
    let even_num = client.get(42).await?;
    assert!(odd_num.isodd());
    assert!(even_num.iseven());

    Ok(())
}

文档

https://docs.rs/iseven_api/latest/iseven_api/

许可协议

根据您的选择,许可协议为

贡献

除非您明确表示,否则根据 Apache-2.0 许可协议定义的任何有意提交的、旨在包含在作品中的贡献,将根据上述方式双重许可,而无需任何额外的条款或条件。

依赖项

~6–17MB
~258K SLoC