datalocker 0.2.0

My first Rust crate I made to learn. Basic Database Interface. Currently works with mySQL only. Uses the mysql crate and provides a wrapper around it to make interacting with a mysql database easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[dependencies.mysql]
version = "24.0.0"

[package]
authors = ["Michael <mikethecoder4@gmail.com>"]
categories = ["database"]
description = "My first Rust crate I made to learn. Basic Database Interface. Currently works with mySQL only. Uses the mysql crate and provides a wrapper around it to make interacting with a mysql database easier."
edition = "2021"
homepage = "https://github.com/SinisterSoda/datalocker"
keywords = ["database", "mysql", "sql"]
license = "MIT OR Apache-2.0"
name = "datalocker"
readme = "README.md"
repository = "https://github.com/SinisterSoda/datalocker"
version = "0.2.0"