File tree Expand file tree Collapse file tree 6 files changed +67
-58
lines changed Expand file tree Collapse file tree 6 files changed +67
-58
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ rustfmt :
7
+ name : Check formatting
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ - uses : dtolnay/rust-toolchain@stable
12
+ with :
13
+ components : rustfmt
14
+ - run : cargo fmt --check
15
+
16
+ tests :
17
+ name : Tests (stable)
18
+ runs-on : ubuntu-latest
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : dtolnay/rust-toolchain@stable
22
+ - run : cargo test
23
+
24
+ tests-msrv :
25
+ name : Tests (MSRV)
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - uses : dtolnay/rust-toolchain@1.81
30
+ - run : cargo test
31
+
32
+ build-no_std :
33
+ name : Build no_std
34
+ runs-on : ubuntu-latest
35
+ steps :
36
+ - uses : actions/checkout@v4
37
+ - uses : dtolnay/rust-toolchain@stable
38
+ with :
39
+ target : thumbv7m-none-eabi
40
+ - run : cargo build --target thumbv7m-none-eabi
41
+
42
+ build-benches :
43
+ name : Build benches
44
+ runs-on : ubuntu-latest
45
+ steps :
46
+ - uses : actions/checkout@v4
47
+ - uses : dtolnay/rust-toolchain@stable
48
+ - run : cargo bench --no-run
49
+
50
+ check-readme :
51
+ name : Check readme
52
+ runs-on : ubuntu-latest
53
+ steps :
54
+ - uses : taiki-e/install-action@just
55
+ - uses : taiki-e/install-action@v2
56
+ with :
57
+ tool : cargo-readme
58
+ - uses : actions/checkout@v4
59
+ - uses : dtolnay/rust-toolchain@stable
60
+ - run : just check-readme
Original file line number Diff line number Diff line change 6
6
7
7
## [ Unreleased] - ReleaseDate
8
8
9
+ ### Changed
10
+
11
+ - ** (breaking)** [ #22 ] ( https://github.com/embedded-graphics/tinytga/pull/22 ) Use 1.81 as MSRV.
12
+
9
13
## [ 0.5.0] - 2023-05-17
10
14
11
15
### Added
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ nom = { version = "7.1.1", default-features = false }
31
31
paste = " 1.0"
32
32
criterion = " 0.3.5"
33
33
clap = { version = " 3.2.22" , features = [" derive" ] }
34
- embedded-graphics-simulator = " 0.5.0"
34
+ embedded-graphics-simulator = { version = " 0.5.0" , default_features = false }
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ images with the origin at the top left corner will generally result in the best
107
107
108
108
## Minimum supported Rust version
109
109
110
- The minimum supported Rust version for tinytga is ` 1.61 ` or greater.
110
+ The minimum supported Rust version for tinytga is ` 1.81 ` or greater.
111
111
Ensure you have the correct version of Rust installed, preferably through < https://rustup.rs > .
112
112
113
113
[ embedded-graphics ] : https://docs.rs/embedded-graphics
Original file line number Diff line number Diff line change 101
101
//!
102
102
//! # Minimum supported Rust version
103
103
//!
104
- //! The minimum supported Rust version for tinytga is `1.61 ` or greater.
104
+ //! The minimum supported Rust version for tinytga is `1.81 ` or greater.
105
105
//! Ensure you have the correct version of Rust installed, preferably through <https://rustup.rs>.
106
106
//!
107
107
//! [`ImageOrigin`]: enum.ImageOrigin.html
You can’t perform that action at this time.
0 commit comments