Mysql client library implemented in rust. Feel free to open a new issues and pull requests.
Available here
Latest crate API docs hosted here.
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]
version = "*"
default-features = false
features = ["socket"]
Currently rust-mysql-simple have no support of SSL on windows. To use crate on Windows you have to disable default features.
[dependencies.mysql]
version = "*"
default-features = false
features = ["pipe"]