We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we use:
const CARGO_PKG_VERSION: &str = env!("CARGO_PKG_VERSION");
It can be replaced with crate_version!() macro. I totally forgot about this macro.
crate_version!()
The text was updated successfully, but these errors were encountered:
examples: Replace env! with crate_version!
88be47c
It’s just cosmetic change, but it makes the code shorter and cleaner. Change-Type: patch Connects-To: #121
zrzka
No branches or pull requests
Currently we use:
It can be replaced with
crate_version!()
macro. I totally forgot about this macro.The text was updated successfully, but these errors were encountered: