├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── enhancement.md └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── flake.lock ├── flake.nix ├── ide_support.png ├── rust-toolchain.toml ├── src └── lib.rs └── tests ├── id.rs └── ui ├── error_from_inside.rs ├── error_from_inside.stderr ├── no_custom_literals_module.rs ├── no_custom_literals_module.stderr ├── no_macro.rs ├── no_macro.stderr ├── no_mod_int.rs ├── no_mod_int.stderr ├── reserved.rs └── reserved.stderr /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/flake.nix -------------------------------------------------------------------------------- /ide_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/ide_support.png -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/id.rs -------------------------------------------------------------------------------- /tests/ui/error_from_inside.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/error_from_inside.rs -------------------------------------------------------------------------------- /tests/ui/error_from_inside.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/error_from_inside.stderr -------------------------------------------------------------------------------- /tests/ui/no_custom_literals_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_custom_literals_module.rs -------------------------------------------------------------------------------- /tests/ui/no_custom_literals_module.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_custom_literals_module.stderr -------------------------------------------------------------------------------- /tests/ui/no_macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_macro.rs -------------------------------------------------------------------------------- /tests/ui/no_macro.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_macro.stderr -------------------------------------------------------------------------------- /tests/ui/no_mod_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_mod_int.rs -------------------------------------------------------------------------------- /tests/ui/no_mod_int.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/no_mod_int.stderr -------------------------------------------------------------------------------- /tests/ui/reserved.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/reserved.rs -------------------------------------------------------------------------------- /tests/ui/reserved.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nik-rev/culit/HEAD/tests/ui/reserved.stderr --------------------------------------------------------------------------------