-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
59 lines (49 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "msql-srv"
version = "0.11.0"
edition = "2021"
rust-version = "1.66.0"
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"
[features]
default = ["tls"]
tls = ["rustls"]
[dependencies]
nom = "7"
mysql_common = { version = "0.31.0", features = ["chrono"] }
byteorder = "1"
chrono = "0.4.23"
rustls = { version = "0.22.1", optional = true }
[dev-dependencies]
postgres = "0.19.1"
mysql = "24"
mysql_async = "0.33.0"
slab = "0.4.2"
tokio = { version = "1.15.0", features = ["full"] }
futures = "0.3.0"
rcgen = "0.8.14"
tempfile = "3.3.0"
native-tls = "0.2.8"
[target.'cfg(unix)'.dev-dependencies]
openssl = "0.10.66"
# for minimal-versions
[target.'cfg(any())'.dev-dependencies]
flate2 = "1.0.13" # libz-sys 1.0.0 has problems
tap = "1.0.1" # bitvec's wyz dependency needs this
time = "0.3.1" # mysql_common needs this through chrono
byteorder = "1.2.4" # mysql_common needs this
rand = "0.3.14" # otherwise libc + winapi won't build
async-trait = "0.1.9" # via tokio-postgtes via postgres
twox-hash = "2.1.0" # via mysql
mysql_common = "0.30.6" # via mysql
bufstream = "0.1.3" # via mysql
bindgen = "0.58.1" # via mysql
cmake = "0.1.45" # via mysql
serde_derive = "1.0.100" # via mysql