Releases: elichai/log-derive
Releases · elichai/log-derive
v0.4.0
- Add a
log_ts
feature that logs the time it takes the function to run (std only) (Thanks @alanthinker ) - Add support for custom Result types like
type MyResult<T> = Result<T, MyErr>;
. - Bug fixes and more.
Also thanks @TedDriggs @SilentByte for contributing.
v0.2.4
-
Optimized the resulting ASM Code by using
move
on the closure and by not saving it into a variable. -
Preserved more of the original spans, although right now they don't help a lot rust-lang/rust#43081
-
Updated the Fibonacci example