We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e4a98 commit 112aea3Copy full SHA for 112aea3
src/macros.rs
@@ -498,6 +498,13 @@ macro_rules! crate_name {
498
/// Provided separator is for the [`crate_authors!`](macro.crate_authors.html) macro,
499
/// refer to the documentation therefor.
500
///
501
+/// **NOTE:** Changing the values in your `Cargo.toml` does not trigger a re-build automatically,
502
+/// and therefore won't change the generated output until you recompile.
503
+///
504
+/// **Pro Tip:** In some cases you can "trick" the compiler into triggering a rebuild when your
505
+/// `Cargo.toml` is changed by including this in your `src/main.rs` file
506
+/// `include_str!("../Cargo.toml");`
507
508
/// # Examples
509
510
/// ```no_run
0 commit comments