Skip to content

Mysql client library implemented in rust. Ad-hoc porting to Windows.

License

Notifications You must be signed in to change notification settings

mkvoya/rust-mysql-simple

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rust-mysql-simple Build Status

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

Documentation

Latest crate API docs hosted here.

Installation

Please use crates.io

Also you can use git via another [dependencies.*] section in your Cargo.toml:

[dependencies.mysql]
git = "https://github.com/blackbeam/rust-mysql-simple"

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:

# For crates.io
[dependencies.mysql]
mysql = "*"
default-features = false

# For git
[dependencies.mysql]
git = "https://github.com/blackbeam/rust-mysql-simple"
default-features = false

Simple example

About

Mysql client library implemented in rust. Ad-hoc porting to Windows.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 98.0%
  • Makefile 2.0%