zbus_macros doesn't compile with `no method named `value`` error
When compiling the zbus_macros crate, I get this error and it doesn't compile properly. It's pulled from crates.io so it should be the newest version.
error[E0599]: no method named `value` found for reference `&LitBool` in the current scope
--> /home/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/zbus_macros-2.3.1/src/proxy.rs:77:41
|
77 | gen_async = lit.value();
| ^^^^^-- help: remove the arguments
| |
| field, not a method
error[E0599]: no method named `value` found for reference `&LitBool` in the current scope
--> /home/thomas/.cargo/registry/src/github.com-1ecc6299db9ec823/zbus_macros-2.3.1/src/proxy.rs:83:44
|
83 | gen_blocking = lit.value();
| ^^^^^-- help: remove the arguments
| |
| field, not a method
For more information about this error, try `rustc --explain E0599`.
error: could not compile `zbus_macros` due to 2 previous errors
warning: build failed, waiting for other jobs to finish...