sqlx-data 0.0.0

A Rust library for working with SQLx data structures
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 2.9 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 38s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • josercarmo

sqlx-data

A Rust library for working with SQLx data structures.

Installation

Add this to your Cargo.toml:

[dependencies]
sqlx-data = "0.1.0"

Usage

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 file for details.