WillzZz / rust-mysql-simple

Mysql client library implemented in rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rust-mysql-simple

Build Status Build status

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

Changelog

Available here

Documentation

Latest crate API docs are hosted on docs.rs.

Installation

Please use crates.io

[dependencies]
mysql = "*"

SSL Support

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

[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:

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

Windows support (since 0.18.0)

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

About

Mysql client library implemented in rust.

License:MIT License


Languages

Language:Rust 99.0%Language:Makefile 1.0%