17 releases
Uses new Rust 2024
| 0.5.2 | Jul 26, 2025 |
|---|---|
| 0.5.0 | Feb 27, 2025 |
| 0.4.5 | Dec 2, 2024 |
| 0.4.4 | Nov 5, 2024 |
| 0.1.4 | Jan 21, 2024 |
#457 in Filesystem
286 downloads per month
Used in ldfm
3KB
simple-expand-tilde
A minimal, fast, and reliable tilde expansion solution.
Usage
use simple_expand_tilde::*;
fn main() {
// Unix => /home/jdoe/.rustup
// Windows => C:\Users\jdoe\.rustup
let path = expand_tilde("~/.rustup").unwrap();
}