File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- 2a6022949077176bfff9f72282dc52e51a175cb7
1
+ 43f4ef5c6a059c32e19483ff3d295feb2f37c5b8
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rustdoc-types"
3
- version = " 0.4 .0"
3
+ version = " 0.5 .0"
4
4
authors = [
" Nixon Enraght-Moony <[email protected] >" ,
" The Rust Project Developers" ]
5
5
edition = " 2018"
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change @@ -221,6 +221,8 @@ pub enum ItemEnum {
221
221
Macro ( String ) ,
222
222
ProcMacro ( ProcMacro ) ,
223
223
224
+ PrimitiveType ( String ) ,
225
+
224
226
AssocConst {
225
227
#[ serde( rename = "type" ) ]
226
228
type_ : Type ,
@@ -386,8 +388,6 @@ pub enum Type {
386
388
} ,
387
389
/// `impl TraitA + TraitB + ...`
388
390
ImplTrait ( Vec < GenericBound > ) ,
389
- /// `!`
390
- Never ,
391
391
/// `_`
392
392
Infer ,
393
393
/// `*mut u32`, `*u8`, etc.
@@ -510,5 +510,8 @@ pub struct Static {
510
510
pub expr : String ,
511
511
}
512
512
513
+ /// rustdoc format-version.
514
+ pub const FORMAT_VERSION : u32 = 9 ;
515
+
513
516
#[ cfg( test) ]
514
517
mod tests;
You can’t perform that action at this time.
0 commit comments