forked from blackbeam/rust-mysql-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (56 loc) · 1.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "mysql"
version = "7.1.2"
authors = ["blackbeam"]
description = "Mysql client library implemented in rust"
license = "MIT"
documentation = "http://blackbeam.org/doc/mysql/index.html"
repository = "https://github.com/blackbeam/rust-mysql-simple"
keywords = ["database", "sql"]
exclude = ["tests/*", ".*", "Makefile"]
[lib]
name = "mysql"
path = "src/lib.rs"
[profile.dev]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
[profile.test]
opt-level = 0
debug = true
[profile.bench]
opt-level = 3
debug = false
[profile.doc]
opt-level = 0
debug = true
[features]
default = []
ssl = ["openssl", "security-framework"]
nightly = []
[dependencies]
lazy_static = "~0.2"
time = "~0.1"
bitflags = "~0.7"
byteorder = "~0.5"
url = "^1.1"
bufstream = "~0.1"
fnv = "~1.0"
twox-hash = "~1.0"
chrono = "~0.2"
nom = "~1.2"
uuid = "~0.3"
[dependencies.regex]
version = "~0.1"
default-features = false
[target.'cfg(not(any(target_os = "windows", target_os = "macos")))'.dependencies.openssl]
version = "~0.7"
optional = true
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "~0.1"
optional = true
features = ["OSX_10_8"]
[target.'cfg(target_os = "windows")'.dependencies.named_pipe]
version = "~0.2"