Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
run: rustup target add i686-unknown-linux-gnu && sudo apt update && sudo apt install -y gcc-multilib
- name: Test (32-bit all-features)
run: cargo test --target i686-unknown-linux-gnu --all-features
- name: Install thumbv6m-none-eabi
run: rustup target add thumbv6m-none-eabi
- name: Check (no atomic ptr)
run: cargo check --target thumbv6m-none-eabi --no-default-features --features derive,serde,arrayvec
- name: Setup Miri
run: cargo miri setup
- name: Test (miri all-features)
Expand Down
1 change: 1 addition & 0 deletions src/derive/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ macro_rules! impl_smart_ptr {
}
impl_smart_ptr!(::alloc::boxed::Box);
impl_smart_ptr!(::alloc::rc::Rc);
#[cfg(target_has_atomic = "ptr")]
impl_smart_ptr!(::alloc::sync::Arc);

impl<T: Encode, const N: usize> Encode for [T; N] {
Expand Down