├── .github └── workflows │ ├── asan.yml │ ├── coverage.yml │ ├── features.yml │ ├── loom.yml │ ├── lsan.yml │ ├── minimal.yml │ ├── miri.yml │ ├── msrv.yml │ ├── nostd.yml │ ├── style.yml │ └── test.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── lib.rs └── sync.rs └── tests └── loom.rs /.github/workflows/asan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/asan.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/features.yml -------------------------------------------------------------------------------- /.github/workflows/loom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/loom.yml -------------------------------------------------------------------------------- /.github/workflows/lsan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/lsan.yml -------------------------------------------------------------------------------- /.github/workflows/minimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/minimal.yml -------------------------------------------------------------------------------- /.github/workflows/miri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/miri.yml -------------------------------------------------------------------------------- /.github/workflows/msrv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/msrv.yml -------------------------------------------------------------------------------- /.github/workflows/nostd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/nostd.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/sento/HEAD/src/sync.rs -------------------------------------------------------------------------------- /tests/loom.rs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------