├── .clippy.toml ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── impl ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ └── lib.rs ├── src └── lib.rs └── tests ├── conditional ├── test_attributes.rs └── test_raw_identifiers.rs └── test.rs /.clippy.toml: -------------------------------------------------------------------------------- 1 | msrv = "1.15.0" 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dtolnay 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/README.md -------------------------------------------------------------------------------- /impl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/impl/Cargo.toml -------------------------------------------------------------------------------- /impl/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /impl/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /impl/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /impl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/impl/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/conditional/test_attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/tests/conditional/test_attributes.rs -------------------------------------------------------------------------------- /tests/conditional/test_raw_identifiers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/tests/conditional/test_raw_identifiers.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtolnay/mashup/HEAD/tests/test.rs --------------------------------------------------------------------------------