├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── rustfmt.toml └── src ├── alloc.rs ├── error.rs ├── lib.rs ├── lock.rs ├── os ├── freebsd.rs ├── illumos.rs ├── linux.rs ├── macos.rs ├── mod.rs ├── netbsd.rs ├── openbsd.rs ├── unix.rs └── windows.rs ├── page.rs ├── protect.rs ├── query.rs └── util.rs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | **/*.rs.bk 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/README.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/alloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/alloc.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/lock.rs -------------------------------------------------------------------------------- /src/os/freebsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/freebsd.rs -------------------------------------------------------------------------------- /src/os/illumos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/illumos.rs -------------------------------------------------------------------------------- /src/os/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/linux.rs -------------------------------------------------------------------------------- /src/os/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/macos.rs -------------------------------------------------------------------------------- /src/os/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/mod.rs -------------------------------------------------------------------------------- /src/os/netbsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/netbsd.rs -------------------------------------------------------------------------------- /src/os/openbsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/openbsd.rs -------------------------------------------------------------------------------- /src/os/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/unix.rs -------------------------------------------------------------------------------- /src/os/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/os/windows.rs -------------------------------------------------------------------------------- /src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/page.rs -------------------------------------------------------------------------------- /src/protect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/protect.rs -------------------------------------------------------------------------------- /src/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/query.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darfink/region-rs/HEAD/src/util.rs --------------------------------------------------------------------------------