rust-mysql-simple

Build Status Build status

Mysql client library implemented in rust. Feel free to open a new issues and pull requests.

Changelog

Available here

Documentation

Latest crate API docs hosted on docs.rs.

Installation

Please use crates.io

toml [dependencies] mysql = "*"

SSL Support

rust-mysql-simple offers support of SSL via ssl cargo feature which is disabled by default. Add ssl feature to enable:

toml [dependencies.mysql] version = "*" features = ["ssl"]

JSON Support

rust-mysql-simple offers JSON support based on serde, but you can switch to rustc-serialize using rustc-serialize feature:

toml [dependencies.mysql] version = "*" features = ["rustc-serialize"]

Windows support (since 0.18.0)

Windows is supported but currently rust-mysql-simple has no support of SSL on Windows.