ritual/versions.rs
1//! Versions of the dependencies of the generated crate.
2//!
3//! These versions are used in `Cargo.toml` of the generated crate.
4//!
5//! It's not easy to determine the versions automatically
6//! because the build tools crate is not even a part of the generator build.
7//! Make sure to update versions here when the actual version of the dependency changes.
8
9/// Version of `ritual_build` crate.
10pub const BUILD_TOOLS_VERSION: &str = "0.0.0";
11
12/// Version of `cpp_utils` crate.
13pub const CPP_UTILS_VERSION: &str = "0.2.1";