File tree Expand file tree Collapse file tree 13 files changed +138
-159
lines changed Expand file tree Collapse file tree 13 files changed +138
-159
lines changed Original file line number Diff line number Diff line change
1
+ * @ rust-embedded/hal
Original file line number Diff line number Diff line change
1
+ block_labels = [" needs-decision" ]
2
+ delete_merged_branches = true
3
+ required_approvals = 1
4
+ status = [
5
+ " ci-linux (stable, x86_64-unknown-linux-gnu)" ,
6
+ " ci-linux (1.35.0, x86_64-unknown-linux-gnu)" ,
7
+ ]
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ staging, trying, master ]
4
+ pull_request :
5
+
6
+ name : Continuous integration
7
+
8
+ env :
9
+ RUSTFLAGS : ' -D warnings'
10
+
11
+ jobs :
12
+ ci-linux :
13
+ runs-on : ubuntu-latest
14
+ strategy :
15
+ matrix :
16
+ # All generated code should be running on stable now
17
+ rust : [stable]
18
+
19
+ # The default target we're compiling on and for
20
+ TARGET : [x86_64-unknown-linux-gnu]
21
+
22
+ include :
23
+ # Test MSRV
24
+ - rust : 1.35.0
25
+ TARGET : x86_64-unknown-linux-gnu
26
+
27
+ # Test nightly but don't fail
28
+ - rust : nightly
29
+ experimental : true
30
+ TARGET : x86_64-unknown-linux-gnu
31
+
32
+ steps :
33
+ - uses : actions/checkout@v2
34
+ - uses : actions-rs/toolchain@v1
35
+ with :
36
+ profile : minimal
37
+ toolchain : ${{ matrix.rust }}
38
+ target : ${{ matrix.TARGET }}
39
+ override : true
40
+ - uses : actions-rs/cargo@v1
41
+ with :
42
+ command : check
43
+ args : --target=${{ matrix.TARGET }}
44
+ - uses : actions-rs/cargo@v1
45
+ with :
46
+ command : test
47
+ args : --target=${{ matrix.TARGET }}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ staging, trying, master ]
4
+ pull_request :
5
+
6
+ name : Clippy check
7
+
8
+ env :
9
+ RUSTFLAGS : ' -D warnings'
10
+
11
+ jobs :
12
+ clippy_check :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - uses : actions-rs/toolchain@v1
17
+ with :
18
+ profile : minimal
19
+ toolchain : stable
20
+ override : true
21
+ components : clippy
22
+ - uses : actions-rs/clippy-check@v1
23
+ with :
24
+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches : [ staging, trying, master ]
4
+ pull_request :
5
+
6
+ name : Code formatting check
7
+
8
+ jobs :
9
+ fmt :
10
+ name : Rustfmt
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : actions-rs/toolchain@v1
15
+ with :
16
+ profile : minimal
17
+ toolchain : stable
18
+ override : true
19
+ components : rustfmt
20
+ - uses : actions-rs/cargo@v1
21
+ with :
22
+ command : fmt
23
+ args : --all -- --check
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.1.3] - 2020-07-07
11
+
12
+ This release of the 0.1 version exists for compatibility with 1.0.0.
13
+ There are no functional changes compared to 0.1.2.
14
+
10
15
## [ v0.1.2] - 2019-04-21
11
16
12
17
### Added
@@ -26,6 +31,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
26
31
27
32
Initial release
28
33
29
- [ Unreleased ] : https://github.com/japaric/nb/compare/v0.1.2...HEAD
30
- [ v0.1.2 ] : https://github.com/japaric/nb/compare/v0.1.1...v0.1.2
31
- [ v0.1.1 ] : https://github.com/japaric/nb/compare/v0.1.0...v0.1.1
34
+ [ Unreleased ] : https://github.com/rust-embedded/nb/compare/v0.1.3...HEAD
35
+ [ v0.1.3 ] : https://github.com/rust-embedded/nb/compare/v0.1.2...v0.1.3
36
+ [ v0.1.2 ] : https://github.com/rust-embedded/nb/compare/v0.1.1...v0.1.2
37
+ [ v0.1.1 ] : https://github.com/rust-embedded/nb/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change @@ -5,11 +5,22 @@ description = "Minimal non-blocking I/O layer"
5
5
keywords = [" await" , " futures" , " IO" ]
6
6
license = " MIT OR Apache-2.0"
7
7
name = " nb"
8
- repository = " https://github.com/japaric/nb"
9
- version = " 0.1.2"
8
+ repository = " https://github.com/rust-embedded/nb"
9
+ homepage = " https://github.com/rust-embedded/nb"
10
+ documentation = " https://docs.rs/nb"
11
+ readme = " README.md"
12
+ version = " 0.1.3" # remember to update html_root_url
10
13
11
14
[features ]
12
15
unstable = []
13
16
17
+ [dependencies ]
18
+ nb = " 1"
19
+
14
20
[dev-dependencies ]
15
21
futures = " 0.1.17"
22
+
23
+ [lib ]
24
+ # Due to the semver-trick, doctests do not compile:
25
+ # error[E0465]: multiple rlib candidates for `nb` found
26
+ doctest = false
Original file line number Diff line number Diff line change 2
2
3
3
> Minimal and reusable non-blocking I/O layer
4
4
5
+ This project is developed and maintained by the [ HAL team] [ team ] .
6
+
5
7
## [ Documentation] ( https://docs.rs/nb )
6
8
7
9
## License
@@ -19,3 +21,5 @@ at your option.
19
21
Unless you explicitly state otherwise, any contribution intentionally submitted
20
22
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
21
23
dual licensed as above, without any additional terms or conditions.
24
+
25
+ [ team ] : https://github.com/rust-embedded/wg#the-hal-team
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments