├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── mock_derive ├── Cargo.lock ├── Cargo.toml ├── examples │ ├── extern_functions.rs │ ├── generics.rs │ ├── simple.rs │ └── stable_or_nightly │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs └── src │ └── lib.rs └── tests ├── Cargo.lock ├── Cargo.toml └── src ├── advanced_traits.rs ├── database.rs ├── export.rs ├── foriegn_functions.rs ├── foriegn_functions_mod2.rs ├── generics.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | **/target 3 | *.diff -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/README.md -------------------------------------------------------------------------------- /mock_derive/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/Cargo.lock -------------------------------------------------------------------------------- /mock_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/Cargo.toml -------------------------------------------------------------------------------- /mock_derive/examples/extern_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/examples/extern_functions.rs -------------------------------------------------------------------------------- /mock_derive/examples/generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/examples/generics.rs -------------------------------------------------------------------------------- /mock_derive/examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/examples/simple.rs -------------------------------------------------------------------------------- /mock_derive/examples/stable_or_nightly/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | -------------------------------------------------------------------------------- /mock_derive/examples/stable_or_nightly/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/examples/stable_or_nightly/Cargo.toml -------------------------------------------------------------------------------- /mock_derive/examples/stable_or_nightly/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/examples/stable_or_nightly/src/lib.rs -------------------------------------------------------------------------------- /mock_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/mock_derive/src/lib.rs -------------------------------------------------------------------------------- /tests/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/Cargo.lock -------------------------------------------------------------------------------- /tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/Cargo.toml -------------------------------------------------------------------------------- /tests/src/advanced_traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/advanced_traits.rs -------------------------------------------------------------------------------- /tests/src/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/database.rs -------------------------------------------------------------------------------- /tests/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/export.rs -------------------------------------------------------------------------------- /tests/src/foriegn_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/foriegn_functions.rs -------------------------------------------------------------------------------- /tests/src/foriegn_functions_mod2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/foriegn_functions_mod2.rs -------------------------------------------------------------------------------- /tests/src/generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/generics.rs -------------------------------------------------------------------------------- /tests/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidDeSimone/mock_derive/HEAD/tests/src/lib.rs --------------------------------------------------------------------------------