| Crates.io | cusip |
| lib.rs | cusip |
| version | 0.3.3 |
| created_at | 2021-03-22 00:32:45.028504+00 |
| updated_at | 2025-06-26 22:17:11.884044+00 |
| description | Support for creating and validating CUSIPs |
| homepage | |
| repository | https://github.com/gnp/cusip-rs.git |
| max_upload_size | |
| id | 371894 |
| size | 136,147 |
An CUSIP type for working with validated Committee on Uniform Security Identification Procedures (CUSIP) identifiers
as defined in ANSI X9.6-2020. There is also a companion type
CINS for working with the subset of CUSIP identifiers that conform to the CINS standard.
This crate is part of the Financial Identifiers series:
Add this to your Cargo.toml:
[dependencies]
cusip = "0.3.1"
use cusip;
let cusip_string = "023135106"; // Amazon.com Inc - Common Stock
match cusip::parse(cusip_string) {
Ok(cusip) => {
println!("Parsed CUSIP: {}", cusip.to_string()); // "023135106"
println!(" Issuer number: {}", cusip.issuer_num()); // "023135"
println!(" Issue number: {}", cusip.issue_num()); // "10"
println!(" Check digit: {}", cusip.check_digit()); // '6'
}
Err(err) => panic!("Unable to parse CUSIP {}: {}", cusip_string, err),
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.