Crates.io | simple-expand-tilde |
lib.rs | simple-expand-tilde |
version | 0.4.4 |
source | src |
created_at | 2024-01-17 08:02:24.667235 |
updated_at | 2024-11-05 18:55:55.737173 |
description | Cross-platform and reliable tilde-expansion solution. |
homepage | |
repository | https://github.com/splurf/simple-expand-tilde |
max_upload_size | |
id | 1102580 |
size | 2,816 |
A minimal, fast, and reliable tilde expansion solution.
use simple_expand_tilde::*;
fn main() {
// Windows => C:\Users\jdoe\.rustup
// Linux => /home/jdoe/.rustup
// Mac => /Users/jdoe/.rustup
let path = expand_tilde("~/.rustup").unwrap();
}