about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTrevor Gross <t.gross35@gmail.com>2025-06-20 02:50:37 -0400
committerGitHub <noreply@github.com>2025-06-20 02:50:37 -0400
commitbab4ca914ea58b5ced4903225fe31e90bfffed5f (patch)
treeccdfb8fadf2f53d28537a438042759dced12de4f /src
parent5b74275f89b6041bf2e9dc2abcf332e206d4cfca (diff)
parent3c418ec505233927d562ff906d8eea309aee1905 (diff)
downloadrust-bab4ca914ea58b5ced4903225fe31e90bfffed5f.tar.gz
rust-bab4ca914ea58b5ced4903225fe31e90bfffed5f.zip
Rollup merge of #138291 - jdonszelmann:optimize-attr, r=oli-obk
rewrite `optimize` attribute to use new attribute parsing infrastructure

r? ```@oli-obk```

I'm afraid we'll get quite a few of these PRs in the future. If we get a lot of trivial changes I'll start merging multiple into one PR. They should be easy to review :)

Waiting on #138165 first
Diffstat (limited to 'src')
-rw-r--r--src/rustdoc-json-types/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rustdoc-json-types/lib.rs b/src/rustdoc-json-types/lib.rs
index 1f93895ae07..d5de43feb58 100644
--- a/src/rustdoc-json-types/lib.rs
+++ b/src/rustdoc-json-types/lib.rs
@@ -37,8 +37,8 @@ pub type FxHashMap<K, V> = HashMap<K, V>; // re-export for use in src/librustdoc
 // will instead cause conflicts. See #94591 for more. (This paragraph and the "Latest feature" line
 // are deliberately not in a doc comment, because they need not be in public docs.)
 //
-// Latest feature: Pretty printing of inline attributes changed
-pub const FORMAT_VERSION: u32 = 48;
+// Latest feature: Pretty printing of optimize attributes changed
+pub const FORMAT_VERSION: u32 = 49;
 
 /// The root of the emitted JSON blob.
 ///