3 个版本
使用旧的 Rust 2015
0.1.2 | 2016 年 8 月 25 日 |
---|---|
0.1.1 | 2016 年 6 月 26 日 |
0.1.0 | 2016 年 6 月 26 日 |
7 在 #luhn
4KB
67 行
rust-luhn2
[![Travis CI 构建状态图片] (https://travis-ci.org/lunemec/rust-luhn.svg?branch=master) [ (https://img.shields.io/crates/v/luhn2.svg)](https://crates.io/crates/luhn2)
对给定的数字执行 Luhn 算法校验,返回 true/false。
它被命名为 luhn2
,因为已经有一个名为 luhn 的包,但文档不全,测试几乎为零(看起来像是 Rust 的第一次尝试)。
用法
将以下内容添加到您的 Cargo.toml
[dependencies]
luhn2 = "0.1"
并将以下内容添加到您的 crate 根目录
extern crate luhn2;
use luhn2::validate;
依赖
~250KB