@@ -7,13 +7,13 @@ license = "MIT/Apache-2.0"
7
7
name = " mysql_async"
8
8
readme = " README.md"
9
9
repository = " https://github.com/blackbeam/mysql_async"
10
- version = " 0.31.3 "
10
+ version = " 0.32.0 "
11
11
exclude = [" test/*" ]
12
12
edition = " 2018"
13
13
categories = [" asynchronous" , " database" ]
14
14
15
15
[dependencies ]
16
- bytes = " 1.0 "
16
+ bytes = " 1.4 "
17
17
crossbeam = " 0.8.1"
18
18
flate2 = { version = " 1.0" , default-features = false }
19
19
futures-core = " 0.3"
@@ -22,7 +22,9 @@ futures-sink = "0.3"
22
22
lazy_static = " 1"
23
23
lru = " 0.10.0"
24
24
mio = { version = " 0.8.0" , features = [" os-poll" , " net" ] }
25
- mysql_common = { version = " 0.29.2" , default-features = false }
25
+ mysql_common = { version = " 0.30" , default-features = false , features = [
26
+ " derive" ,
27
+ ] }
26
28
once_cell = " 1.7.2"
27
29
pem = " 1.0.1"
28
30
percent-encoding = " 2.1.0"
@@ -34,7 +36,9 @@ socket2 = "0.4.2"
34
36
thiserror = " 1.0.4"
35
37
tokio = { version = " 1.0" , features = [" io-util" , " fs" , " net" , " time" , " rt" ] }
36
38
tokio-util = { version = " 0.7.2" , features = [" codec" , " io" ] }
37
- tracing = { version = " 0.1.37" , default-features = false , features = [" attributes" ], optional = true }
39
+ tracing = { version = " 0.1.37" , default-features = false , features = [
40
+ " attributes" ,
41
+ ], optional = true }
38
42
twox-hash = " 1"
39
43
url = " 2.1"
40
44
@@ -76,20 +80,20 @@ rand = "0.8.0"
76
80
[features ]
77
81
default = [
78
82
" flate2/zlib" ,
79
- " mysql_common/bigdecimal03 " ,
83
+ " mysql_common/bigdecimal " ,
80
84
" mysql_common/rust_decimal" ,
81
- " mysql_common/time03" ,
82
- " mysql_common/uuid" ,
85
+ " mysql_common/time" ,
83
86
" mysql_common/frunk" ,
87
+ " derive" ,
84
88
" native-tls-tls" ,
85
89
]
86
90
default-rustls = [
87
91
" flate2/zlib" ,
88
- " mysql_common/bigdecimal03 " ,
92
+ " mysql_common/bigdecimal " ,
89
93
" mysql_common/rust_decimal" ,
90
- " mysql_common/time03" ,
91
- " mysql_common/uuid" ,
94
+ " mysql_common/time" ,
92
95
" mysql_common/frunk" ,
96
+ " derive" ,
93
97
" rustls-tls" ,
94
98
]
95
99
minimal = [" flate2/zlib" ]
@@ -102,6 +106,7 @@ rustls-tls = [
102
106
" rustls-pemfile" ,
103
107
]
104
108
tracing = [" dep:tracing" ]
109
+ derive = [" mysql_common/derive" ]
105
110
nightly = []
106
111
107
112
[lib ]
0 commit comments