I need to prepend ./ to paths in my code, which I'm currently doing like this:
let path = Path::new("foo.sol");
let path_with_dot = Path::new("./").join(path);
However, I want to maintain compatibility across multiple platforms while adding ./ in front of the path. How can I do this?