2 releases
Uses old Rust 2015
0.1.1 | Sep 1, 2018 |
---|---|
0.1.0 | Sep 1, 2018 |
#1582 in Filesystem
11KB
102 lines
cd-manager
This is a simple crate designed to prevent you from forgetting to pop
off of a PathBuf
upon exiting scope
(i.e. at the end of a loop, when returning from a function, etc). This makes it easy to have multiple
return points, as your context will automatically be restored upon Drop
.
This crate is not perfectly safe at the moment (it is "safe" in the Rust sense, but you can trigger undesired behavior when used improperly), but the basic functionality works.
For more documentation, see the main feature of this package, CdManager
.
To add this to your project, use
[dependencies]
cd-manager = "0.1"
Dependencies
~64KB