file-exists-macro 0.1.0

file exists macro
Documentation
# file-exists-macro

A Rust procedural macro that checks if a file exists at compile time and expands to a boolean (`true` or `false`) based on the file's existence.

## Example

```rust
use file_exists_macro::exists;

const CARGO_EXISTS: bool = exists!("Cargo.toml");

fn main() {
    if CARGO_EXISTS {
        println!("Cargo.toml file exists!");
    } else {
        println!("Cargo.toml file does not exist.");
    }
}
```