Releases: codebycruz/constime
0.4.1
This changes constime to output temporary files to your dedicated operating system's std::env::temp_dir().join("constime").join(<crate name>) rather than local to your crate.
This should mean that you won't have to manually clean your project if you're iterating upon constime! blocks a lot.
0.3.0
Refactoring
This brings an extensive refactoring of the code that's been long overdue.
It's made the code "larger" in terms of LOC, but it is significantly cleaner and more maintainable.
Autocomplete
You'll now get autocomplete inside of comptime! {} blocks.
Less Temporary Files
With the refactoring, I found that rustc can be piped input rather than having to take a temporary source file.
So comptime no longer generates these in your build directory.
The only temporary files that remain are the binaries that actually run your comptime! {} blocks - for optimization's sake.
0.2.2
Switched ureq to a dev-dependency (as it originally and should have been)
0.2.1
Fixed support for external dependencies added in 0.2.0 😅
