├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── examples └── default_types.rs └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/README.md -------------------------------------------------------------------------------- /examples/default_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/examples/default_types.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reem/rust-plugin/HEAD/src/lib.rs --------------------------------------------------------------------------------