| Crates.io | commonsense |
| lib.rs | commonsense |
| version | 0.0.1 |
| created_at | 2025-10-26 16:46:48.441828+00 |
| updated_at | 2025-10-26 16:46:48.441828+00 |
| description | Personal ritual library of ergonomic Rust utilities |
| homepage | https://github.com/glockenmeier/commonsense |
| repository | https://github.com/glockenmeier/commonsense |
| max_upload_size | |
| id | 1901613 |
| size | 15,742 |
commonsense is a collection of ergonomic rituals for Rust: macros and utilities that encode ownership and intent without hiding their cost.
svec! — create a Vec<String> from string literals or expressions.use commonsense as cs;
fn main() {
let words = cs::svec!["hello", "world"];
assert_eq!(words, vec!["hello".to_string(), "world".to_string()]);
}