File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed
Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 4141 cargo test --all --features axum
4242 cargo test --all --features reload
4343
44+ - run : |
45+ rustup target add thumbv6m-none-eabi
46+ cargo build --no-default-features --target thumbv6m-none-eabi
47+
4448 lint :
4549 runs-on : ubuntu-latest
4650
Original file line number Diff line number Diff line change 77 cargo test --all
88 cargo test --all --features axum
99 cargo test --all --features reload
10+ cargo build --no-default-features --target thumbv6m-none-eabi
1011
1112# publish current GitHub master branch
1213publish :
Original file line number Diff line number Diff line change @@ -68,6 +68,9 @@ mod tests {
6868 core:: fmt:: { self , Display } ,
6969 } ;
7070
71+ #[ cfg( not( feature = "reload" ) ) ]
72+ use alloc:: string:: ToString ;
73+
7174 struct Wrapper ( & ' static str ) ;
7275
7376 impl Display for Wrapper {
Original file line number Diff line number Diff line change 650650//! ");
651651//! ```
652652
653+ #![ cfg_attr( not( feature = "reload" ) , no_std) ]
654+
655+ #[ cfg( not( feature = "reload" ) ) ]
656+ extern crate alloc;
657+
653658pub use {
654659 self :: escape:: { Escape , Trusted } ,
655660 boilerplate_macros:: { boilerplate, Boilerplate } ,
You can’t perform that action at this time.
0 commit comments