├── .gitignore ├── Cargo.toml ├── README.md ├── core ├── .gitignore ├── Cargo.toml ├── LICENSE └── src │ ├── inventory.rs │ ├── lib.rs │ └── tests.rs ├── rustfmt.toml └── traitcast ├── .gitignore ├── Cargo.toml ├── LICENSE └── src ├── lib.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/README.md -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/core/Cargo.toml -------------------------------------------------------------------------------- /core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/core/LICENSE -------------------------------------------------------------------------------- /core/src/inventory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/core/src/inventory.rs -------------------------------------------------------------------------------- /core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/core/src/lib.rs -------------------------------------------------------------------------------- /core/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/core/src/tests.rs -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | reorder_imports = true 2 | max_width = 80 3 | -------------------------------------------------------------------------------- /traitcast/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /traitcast/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/traitcast/Cargo.toml -------------------------------------------------------------------------------- /traitcast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/traitcast/LICENSE -------------------------------------------------------------------------------- /traitcast/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/traitcast/src/lib.rs -------------------------------------------------------------------------------- /traitcast/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bch29/traitcast/HEAD/traitcast/src/tests.rs --------------------------------------------------------------------------------