We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617aad8 commit 38b364bCopy full SHA for 38b364b
compiler/rustc_fluent_macro/src/fluent.rs
@@ -78,8 +78,8 @@ fn failed(crate_name: &Ident) -> proc_macro::TokenStream {
78
79
/// See [rustc_fluent_macro::fluent_messages].
80
pub(crate) fn fluent_messages(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
81
- let crate_name = std::env::var("CARGO_PKG_NAME")
82
- // If `CARGO_PKG_NAME` is missing, then we're probably running in a test, so use
+ let crate_name = std::env::var("CARGO_CRATE_NAME")
+ // If `CARGO_CRATE_NAME` is missing, then we're probably running in a test, so use
83
// `no_crate`.
84
.unwrap_or_else(|_| "no_crate".to_string())
85
.replace("rustc_", "");
0 commit comments