├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── boxext_derive ├── Cargo.toml ├── README.md └── src │ └── lib.rs └── src ├── allocator_box.rs ├── dummy.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/README.md -------------------------------------------------------------------------------- /boxext_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/boxext_derive/Cargo.toml -------------------------------------------------------------------------------- /boxext_derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/boxext_derive/README.md -------------------------------------------------------------------------------- /boxext_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/boxext_derive/src/lib.rs -------------------------------------------------------------------------------- /src/allocator_box.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/src/allocator_box.rs -------------------------------------------------------------------------------- /src/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/src/dummy.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glandium/boxext/HEAD/src/lib.rs --------------------------------------------------------------------------------