You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use env::temp_dir for constime base instead of storing relative to
project.
Also joins to the crate name now, just in case there's a collision
across two crates that for some reason have an identical constime!
invocation.
Copy file name to clipboardExpand all lines: README.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,4 @@ fn main() {
60
60
61
61
**You should get autocomplete and error feedback when using the macro.**
62
62
63
-
This works with temporary files, which currently aren't automatically cleared.
64
-
65
-
If you notice your project getting a little large, periodically run `cargo clean` to remove these.
63
+
This by creating temporary binaries running each of your constime! invocations, stored in [`std::env::temp_dir()`](https://doc.rust-lang.org/std/env/fn.temp_dir.html)`.join("constime")`
0 commit comments