add initial mysql crate draft

This commit is contained in:
yggverse 2026-03-05 15:19:36 +02:00
parent 4bd4587565
commit 2bf2148011
12 changed files with 1418 additions and 0 deletions

17
crates/mysql/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "hlstate-mysql"
version = "0.1.0"
edition = "2024"
license = "MIT"
readme = "README.md"
description = "Shared MySQL database library"
keywords = ["hlstate", "database", "mysql", "library", "api"]
# categories = []
repository = "https://github.com/YGGverse/hlstate-rs"
[features]
default = []
transaction = []
[dependencies]
mysql = "26.0.1"