You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 0.23.0 there is support for no-std/alloc which works fine on targets supporting atomics. Some targets however don't have support for atomics and usually the portable-atomic crate is used for that. It seems all the dependencies of Rustls support that but Rustls itself needs alloc::sync::Arc which is not available without atomics.
Is supporting those targets desired? Would a PR adding that something you might consider?