SUPERAndroidAnalyzer / super

Secure, Unified, Powerful and Extensible Rust Android Analyzer
https://superanalyzer.rocks/
GNU General Public License v3.0
421 stars 59 forks source link

Use `PathBuf`s instead of `String`s for paths #52

Closed Razican closed 8 years ago

Razican commented 8 years ago

We currently use Strings in the Config struct to store paths. This should be avoided, since we have PathBuf structs for that purpose, that they even have great methods for path composition, that will give us even better multiplatform support.

aomader commented 8 years ago

I'm on it.