| Crates.io | dewey-decimal |
| lib.rs | dewey-decimal |
| version | 1.0.2 |
| created_at | 2025-07-18 22:44:16.784583+00 |
| updated_at | 2025-07-18 22:55:42.844936+00 |
| description | Simple wrapper around Dewey Decimal classifications |
| homepage | https://github.com/dax-dot-gay/dewey-decimal |
| repository | https://github.com/dax-dot-gay/dewey-decimal |
| max_upload_size | |
| id | 1759759 |
| size | 246,984 |
Simple wrapper around Dewey Decimal classifications
// Complete documentation: https://docs.rs/dewey-decimal
use dewey_decimal::{Dewey, Class};
fn main() {
// Get the class representing "Computer science, knowledge & systems"
let comp_sci = Class::get("00").unwrap();
// Gets all children in this class
let cs_classes = comp_sci.all_children()
}