forked from blackbeam/rust-mysql-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (46 loc) · 1.01 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
[package]
name = "mysql"
version = "20.0.1"
authors = ["blackbeam"]
description = "Mysql client library implemented in rust"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/mysql"
repository = "https://github.com/blackbeam/rust-mysql-simple"
keywords = ["database", "sql"]
exclude = ["tests/*", ".*", "Makefile"]
categories = ["database"]
edition = "2018"
build = "build.rs"
[badges.azure-devops]
build = "1"
pipeline = "blackbeam.rust-mysql-simple"
project = "aikorsky/mysql Rust"
[lib]
name = "mysql"
path = "src/lib.rs"
[profile.bench]
opt-level = 3
[features]
nightly = []
[dev-dependencies]
lazy_static = "1.4.0"
rand = "0.7.2"
serde_derive = "1"
[dependencies]
bufstream = "~0.1"
io-enum = "0.2.1"
lru = "0.6.0"
mysql_common = "0.24.1"
native-tls = "0.2.3"
socket2 = "0.3.12"
pem = "0.8.1"
percent-encoding = "2.1.0"
serde = "1"
serde_json = "1"
twox-hash = "1"
url = "2.1"
[target.'cfg(target_os = "windows")'.dependencies]
named_pipe = "~0.4"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
nix = "0.18.0"