├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── any.rs └── serde.rs ├── src └── lib.rs └── tests ├── nightly.rs ├── no_std_works.rs └── smoke.rs /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/README.md -------------------------------------------------------------------------------- /examples/any.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/examples/any.rs -------------------------------------------------------------------------------- /examples/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/examples/serde.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/nightly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/tests/nightly.rs -------------------------------------------------------------------------------- /tests/no_std_works.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/tests/no_std_works.rs -------------------------------------------------------------------------------- /tests/smoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matklad/typed_key/HEAD/tests/smoke.rs --------------------------------------------------------------------------------