├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── lib.rs └── sys ├── mod.rs ├── unix.rs └── windows.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: rust 2 | 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/README.md -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/sys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/src/sys/mod.rs -------------------------------------------------------------------------------- /src/sys/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/src/sys/unix.rs -------------------------------------------------------------------------------- /src/sys/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanmonstar/vecio/HEAD/src/sys/windows.rs --------------------------------------------------------------------------------