I'm not able to build the project as described in the readme. The build script of the app crate (app/build.rs) seems to not be compatible with windows systems. It uses the date cmd-utility to format the current date, but this utility cannot be found on windows systems. Switching to something like chrono::Utc::now().format("%Y-%m-%d").to_string() would produce the same output for every system.
I'm not able to build the project as described in the readme. The build script of the app crate (app/build.rs) seems to not be compatible with windows systems. It uses the date cmd-utility to format the current date, but this utility cannot be found on windows systems. Switching to something like
chrono::Utc::now().format("%Y-%m-%d").to_string()would produce the same output for every system.