File tree 9 files changed +14
-8
lines changed
9 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ authors = [
9
9
" Philipp Schuster <[email protected] >"
10
10
]
11
11
license = " MIT/Apache-2.0"
12
- edition = " 2018 "
12
+ edition = " 2021 "
13
13
categories = [
14
14
" no-std" ,
15
15
" parsing" ,
Original file line number Diff line number Diff line change 1
1
# CHANGELOG for crate ` multiboot2-header `
2
2
3
+ ## Unreleased
4
+ - MSRV is 1.56.1
5
+
3
6
## v0.2.0 (2022-05-03)
4
7
- ** BREAKING** renamed ` EntryHeaderTag ` to ` EntryAddressHeaderTag `
5
8
- ** BREAKING** some paths changed from ` multiboot2_header::header ` to ` multiboot2_header::builder `
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ You may need a special linker script to place this in a LOAD segment with a file
68
68
See specification.
69
69
70
70
## MSRV
71
- The MSRV is 1.52 .1 stable.
71
+ The MSRV is 1.56 .1 stable.
72
72
73
73
## License & Contribution
74
74
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ pub struct InformationRequestHeaderTagBuilder {
21
21
#[ cfg( feature = "builder" ) ]
22
22
impl InformationRequestHeaderTagBuilder {
23
23
/// New builder.
24
- #[ allow( clippy:: missing_const_for_fn) ] // TODO remove once MSRV is higher than 1.52.1
24
+ #[ allow( clippy:: missing_const_for_fn) ] // TODO remove once MSRV is higher than 1.65.0
25
25
pub fn new ( flag : HeaderTagFlag ) -> Self {
26
26
Self {
27
27
irs : BTreeSet :: new ( ) ,
@@ -31,7 +31,7 @@ impl InformationRequestHeaderTagBuilder {
31
31
32
32
/// Returns the expected length of the information request tag,
33
33
/// when the `build`-method gets called.
34
- #[ allow( clippy:: missing_const_for_fn) ] // TODO remove once MSRV is higher than 1.52.1
34
+ #[ allow( clippy:: missing_const_for_fn) ] // TODO remove once MSRV is higher than 1.65.0
35
35
pub fn expected_len ( & self ) -> usize {
36
36
let basic_header_size = size_of :: < InformationRequestHeaderTag < 0 > > ( ) ;
37
37
let req_tags_size = self . irs . len ( ) * size_of :: < MbiTagType > ( ) ;
Original file line number Diff line number Diff line change 31
31
//! ```
32
32
//!
33
33
//! ## MSRV
34
- //! The MSRV is 1.52 .1 stable.
34
+ //! The MSRV is 1.56 .1 stable.
35
35
36
36
#![ no_std]
37
37
#![ deny( rustdoc:: all) ]
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ authors = [
14
14
" Philipp Schuster <[email protected] >"
15
15
]
16
16
license = " MIT/Apache-2.0"
17
- edition = " 2018 "
17
+ edition = " 2021 "
18
18
categories = [
19
19
" no-std" ,
20
20
" parsing" ,
Original file line number Diff line number Diff line change 1
1
# CHANGELOG for crate ` multiboot2 `
2
2
3
+ ## Unreleased
4
+ - MSRV is 1.56.1
5
+
3
6
## 0.14.2 (2023-03-17)
4
7
- documentation fixes
5
8
- ` MbiLoadError ` now implements ` Display `
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ other fields | variable
31
31
All tags and the mbi itself are 8-byte aligned. The last tag must be the _ end tag_ , which is a tag of type ` 0 ` and size ` 8 ` .
32
32
33
33
## MSRV
34
- The MSRV is 1.52 .1 stable.
34
+ The MSRV is 1.56 .1 stable.
35
35
36
36
## License & Contribution
37
37
Original file line number Diff line number Diff line change 30
30
//! ```
31
31
//!
32
32
//! ## MSRV
33
- //! The MSRV is 1.52 .1 stable.
33
+ //! The MSRV is 1.56 .1 stable.
34
34
35
35
// this crate can use std in tests only
36
36
#[ cfg_attr( test, macro_use) ]
You can’t perform that action at this time.
0 commit comments