forked from jonhoo/msql-srv
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (33 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "msql-srv"
version = "0.9.2"
edition = "2018"
description = "Bindings for emulating a MySQL/MariaDB server"
readme = "README.md"
authors = ["Jon Gjengset <[email protected]>"]
documentation = "https://docs.rs/msql-srv"
homepage = "https://github.com/jonhoo/msql-srv"
repository = "https://github.com/jonhoo/msql-srv.git"
keywords = ["api-bindings", "database", "sql", "mock"]
categories = ["api-bindings", "network-programming", "database-implementations"]
license = "MIT/Apache-2.0"
[badges]
azure-devops = { project = "jonhoo/jonhoo", pipeline = "msql-srv", build = "27" }
codecov = { repository = "jonhoo/msql-srv", branch = "master", service = "github" }
maintenance = { status = "experimental" }
[dependencies]
nom = "5"
mysql_common = "0.22"
byteorder = "1"
chrono = "0.4"
time = "=0.2.7"
tokio = { version = "1.0", features = ["io-util", "io-std"] }
async-trait = "0.1.40"
rand = "0.8.3"
[dev-dependencies]
postgres = "0.15"
mysql = "18"
mysql_async = "0.20.0"
slab = "0.4.2"
tokio = { version = "1.0", features = ["full"] }
futures = "0.1.26"