We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74fbbef commit 1521b53Copy full SHA for 1521b53
src/rustdoc-json-types/lib.rs
@@ -8,6 +8,9 @@ use std::path::PathBuf;
8
9
use serde::{Deserialize, Serialize};
10
11
+/// rustdoc format-version.
12
+pub const FORMAT_VERSION: u32 = 10;
13
+
14
/// A `Crate` is the root of the emitted JSON blob. It contains all type/documentation information
15
/// about the language items in the local crate, as well as info about external items to allow
16
/// tools to find or link to them.
@@ -517,8 +520,5 @@ pub struct Static {
517
520
pub expr: String,
518
521
}
519
522
-/// rustdoc format-version.
-pub const FORMAT_VERSION: u32 = 9;
-
523
#[cfg(test)]
524
mod tests;
0 commit comments