File tree 2 files changed +28
-1
lines changed
2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,41 @@ jobs:
44
44
run : |
45
45
cargo update -p serde_test --precise 1.0.163
46
46
cargo update -p serde --precise 1.0.69
47
- - name : Tests
47
+ - name : Build
48
48
run : |
49
+ cargo build -v --no-default-features
49
50
cargo build --verbose --features "${{ matrix.features }}"
51
+ - name : Tests
52
+ run : |
50
53
cargo doc --verbose --features "${{ matrix.features }}" --no-deps
51
54
cargo test --verbose --features "${{ matrix.features }}"
52
55
cargo test --release --verbose --features "${{ matrix.features }}"
53
56
- name : Test run benchmarks
54
57
if : matrix.bench != ''
55
58
run : cargo test -v --benches
56
59
60
+ nostd :
61
+ runs-on : ubuntu-latest
62
+ continue-on-error : false
63
+ strategy :
64
+ matrix :
65
+ include :
66
+ - rust : stable
67
+ target : thumbv6m-none-eabi
68
+ features : zeroize
69
+
70
+ name : nostd/${{ matrix.target }}/${{ matrix.rust }}
71
+ steps :
72
+ - uses : actions/checkout@v4
73
+ - uses : dtolnay/rust-toolchain@stable
74
+ with :
75
+ toolchain : ${{ matrix.rust }}
76
+ targets : ${{ matrix.target }}
77
+ - name : Tests
78
+ run : |
79
+ cargo rustc "--target=${{ matrix.target }}" --no-default-features --features "${{ matrix.features }}"
80
+
81
+
57
82
miri :
58
83
runs-on : ubuntu-latest
59
84
steps :
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ use std::fmt;
5
5
use std:: hash:: { Hash , Hasher } ;
6
6
use std:: mem:: MaybeUninit ;
7
7
use std:: ops:: { Deref , DerefMut } ;
8
+ #[ cfg( feature="std" ) ]
8
9
use std:: path:: Path ;
9
10
use std:: ptr;
10
11
use std:: slice;
@@ -502,6 +503,7 @@ impl<const CAP: usize> fmt::Debug for ArrayString<CAP>
502
503
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result { ( * * self ) . fmt ( f) }
503
504
}
504
505
506
+ #[ cfg( feature="std" ) ]
505
507
impl < const CAP : usize > AsRef < Path > for ArrayString < CAP > {
506
508
fn as_ref ( & self ) -> & Path {
507
509
self . as_str ( ) . as_ref ( )
You can’t perform that action at this time.
0 commit comments