├── .github └── workflows │ ├── CI.yml │ └── future-proof.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── cargo_publish.sh ├── change_version.sh ├── examples ├── readme-basic.rs └── readme-function_path.rs ├── proc-macro ├── .gitignore ├── Cargo.toml └── src │ └── lib.rs ├── rust-toolchain ├── src └── lib.rs └── tests ├── double_use.rs └── raw_idents.rs /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/future-proof.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/.github/workflows/future-proof.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/README.md -------------------------------------------------------------------------------- /cargo_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/cargo_publish.sh -------------------------------------------------------------------------------- /change_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/change_version.sh -------------------------------------------------------------------------------- /examples/readme-basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/examples/readme-basic.rs -------------------------------------------------------------------------------- /examples/readme-function_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/examples/readme-function_path.rs -------------------------------------------------------------------------------- /proc-macro/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /proc-macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/proc-macro/Cargo.toml -------------------------------------------------------------------------------- /proc-macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/proc-macro/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | 1.45.0 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/double_use.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/tests/double_use.rs -------------------------------------------------------------------------------- /tests/raw_idents.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhenrymantilla/rust-function_name/HEAD/tests/raw_idents.rs --------------------------------------------------------------------------------