mysql 3.0.0

Mysql client library implemented in rust
docs.rs failed to build mysql-3.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: mysql-24.0.0

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 here.

Installation

Please use crates.io

[dependencies]
mysql = "*"

rust-mysql-simple offer support of SSL via ssl cargo feature which is enabled by default. If you have no plans to use SSL, then you should disable that feature to not to depend on rust-openssl:

[dependencies.mysql]
mysql = "*"
default-features = false
features = ["socket"]

Windows support (since 0.18.0)

Currently rust-mysql-simple have no support of SSL on windows. To use crate on Windows you have to disable default features.

[dependencies.mysql]
mysql = "*"
default-features = false
features = ["pipe"]

Simple example