Closed Razican closed 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.
String
Config
PathBuf
I'm on it.
We currently use
String
s in theConfig
struct to store paths. This should be avoided, since we havePathBuf
structs for that purpose, that they even have great methods for path composition, that will give us even better multiplatform support.