1 unstable release

0.4.0 Mar 20, 2021

#24 in #international

Download history 49/week @ 2024-07-22 59/week @ 2024-07-29 33/week @ 2024-08-05 77/week @ 2024-08-12 57/week @ 2024-08-19 42/week @ 2024-08-26 100/week @ 2024-09-02 24/week @ 2024-09-09 12/week @ 2024-09-16 39/week @ 2024-09-23 34/week @ 2024-09-30 18/week @ 2024-10-07 93/week @ 2024-10-14 78/week @ 2024-10-21 161/week @ 2024-10-28 58/week @ 2024-11-04

395 downloads per month

MIT license

52KB
1K SLoC

isbn

Build Status

A library for handling International Standard Book Number, or ISBNs.


lib.rs:

A library for handling International Standard Book Number, or ISBNs.

Examples

use isbn2::{Isbn10, Isbn13};

let isbn_10 = Isbn10::new([8, 9, 6, 6, 2, 6, 1, 2, 6, 4]).unwrap();
assert_eq!(isbn_10.hyphenate().unwrap().as_str(), "89-6626-126-4");
assert_eq!(isbn_10.registration_group(), Ok("Korea, Republic"));
assert_eq!("89-6626-126-4".parse(), Ok(isbn_10));

let isbn_13 = Isbn13::new([9, 7, 8, 1, 4, 9, 2, 0, 6, 7, 6, 6, 5]).unwrap();
assert_eq!(isbn_13.hyphenate().unwrap().as_str(), "978-1-4920-6766-5");
assert_eq!(isbn_13.registration_group(), Ok("English language"));
assert_eq!("978-1-4920-6766-5".parse(), Ok(isbn_13));

Dependencies

~1–1.6MB
~27K SLoC