sqlx-data 0.0.0

A Rust library for working with SQLx data structures
Documentation
# sqlx-data

A Rust library for working with SQLx data structures.

## Installation

Add this to your `Cargo.toml`:

```toml
[dependencies]
sqlx-data = "0.1.0"
```

## Usage

```rust
use sqlx_data::add;

fn main() {
    let result = add(2, 2);
    println!("Result: {}", result);
}
```

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.