├── .gitignore ├── Cargo.toml ├── LICENSE-MIT ├── README.md └── src ├── ext.rs ├── lib.rs ├── small_float.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/README.md -------------------------------------------------------------------------------- /src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/src/ext.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/small_float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/src/small_float.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcwalton/offset-allocator/HEAD/src/tests.rs --------------------------------------------------------------------------------