File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,14 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
os : [ubuntu-latest, macos-latest, windows-latest]
19
- rust : [stable, nightly, '1.48 ']
19
+ rust : [stable, nightly, '1.56 ']
20
20
steps :
21
21
- name : Checkout repository
22
22
uses : actions/checkout@v4
23
23
- name : Install toolchain
24
24
uses : dtolnay/rust-toolchain@master
25
25
with :
26
26
toolchain : ${{ matrix.rust }}
27
- # Workaround link failures if XCode 14 is combined with Rust <= 1.53
28
- - name : Downgrade to XCode 13
29
- if : ${{ matrix.os == 'macos-latest' && matrix.rust == '1.48' }}
30
- uses : maxim-lobanov/setup-xcode@v1
31
- with :
32
- xcode-version : ' 13'
33
27
- name : Setup cache
34
28
uses : Swatinem/rust-cache@v2
35
29
- name : Test (no features)
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ documentation = "https://docs.rs/errno"
10
10
repository = " https://github.com/lambda-fairy/rust-errno"
11
11
description = " Cross-platform interface to the `errno` variable."
12
12
categories = [" no-std" , " os" ]
13
- rust-version = " 1.48 "
13
+ rust-version = " 1.56 "
14
14
15
15
[target .'cfg(unix)' .dependencies ]
16
16
libc = { version = " 0.2" , default-features = false }
17
17
18
18
[target .'cfg(windows)' .dependencies .windows-sys ]
19
- version = " 0.48 "
19
+ version = " 0.52 "
20
20
features = [
21
21
" Win32_Foundation" ,
22
22
" Win32_System_Diagnostics_Debug" ,
Original file line number Diff line number Diff line change 1
1
# errno [ ![ CI] ( https://github.com/lambda-fairy/rust-errno/actions/workflows/main.yml/badge.svg )] ( https://github.com/lambda-fairy/rust-errno/actions/workflows/main.yml ) [ ![ Cargo] ( https://img.shields.io/crates/v/errno.svg )] ( https://crates.io/crates/errno )
2
2
3
- Cross-platform interface to the [ ` errno ` ] [ errno ] variable. Works on Rust 1.48 or newer.
3
+ Cross-platform interface to the [ ` errno ` ] [ errno ] variable. Works on Rust 1.56 or newer.
4
4
5
5
Documentation is available at < https://docs.rs/errno > .
6
6
Original file line number Diff line number Diff line change 1
- msrv = " 1.48 "
1
+ msrv = " 1.56 "
You can’t perform that action at this time.
0 commit comments