Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58ca302

Browse files
authored
Merge pull request #5086 from epage/term
perf(builder): Speed up builds by dropping is-terminal
2 parents 88cf306 + 0b196a1 commit 58ca302

8 files changed

Lines changed: 74 additions & 72 deletions

File tree

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
msrv = "1.64.0" # MSRV
1+
msrv = "1.70.0" # MSRV
22
warn-on-all-wildcard-imports = true
33
allow-expect-in-tests = true
44
allow-unwrap-in-tests = true

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
build: [msrv, wasm, wasm-wasi, debug, release]
8585
include:
8686
- build: msrv
87-
rust: 1.64.0 # MSRV
87+
rust: 1.70.0 # MSRV
8888
target: x86_64-unknown-linux-gnu
8989
features: full
9090
- build: wasm
@@ -129,7 +129,7 @@ jobs:
129129
- name: Install Rust
130130
uses: dtolnay/rust-toolchain@stable
131131
with:
132-
toolchain: 1.64.0 # MSRV
132+
toolchain: 1.70.0 # MSRV
133133
- uses: Swatinem/rust-cache@v2
134134
- name: UI Tests
135135
run: make test-ui-${{ matrix.features }}
@@ -154,7 +154,7 @@ jobs:
154154
- name: Install Rust
155155
uses: dtolnay/rust-toolchain@stable
156156
with:
157-
toolchain: 1.64.0 # MSRV
157+
toolchain: 1.70.0 # MSRV
158158
- uses: Swatinem/rust-cache@v2
159159
- name: Check documentation
160160
env:
@@ -185,7 +185,7 @@ jobs:
185185
- name: Install Rust
186186
uses: dtolnay/rust-toolchain@stable
187187
with:
188-
toolchain: 1.64.0 # MSRV
188+
toolchain: 1.70.0 # MSRV
189189
components: clippy
190190
- uses: Swatinem/rust-cache@v2
191191
- name: Lint (ultra-minimal)

Cargo.lock

Lines changed: 64 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
[workspace.package]
1515
license = "MIT OR Apache-2.0"
1616
edition = "2021"
17-
rust-version = "1.64.0" # MSRV
17+
rust-version = "1.70.0" # MSRV
1818
include = [
1919
"build.rs",
2020
"src/**/*",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ifneq (${TOOLCHAIN_TARGET},)
1010
ARGS+=--target ${TOOLCHAIN_TARGET}
1111
endif
1212

13-
MSRV?=1.64.0
13+
MSRV?=1.70.0
1414

1515
_FEATURES = minimal default wasm full debug release
1616
_FEATURES_minimal = --no-default-features --features "std"

0 commit comments

Comments
 (0)