atomic_sync 0.2.0

Atomic-based synchronization implementing traits in `abs_sync`
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![no_std]
#![feature(type_alias_impl_trait)]
#![feature(try_trait_v2)]

// We always pull in `std` during tests, because it's just easier
// to write tests when you can assume you're on a capable platform
#[cfg(test)]
extern crate std;

pub mod mutex;
pub mod rwlock;

pub mod x_deps {
    pub use abs_sync;

    pub use atomex;
    pub use atomex::x_deps::funty;
}