Skip to content

Commit bd6a503

Browse files
authored
Merge pull request #242 from blackbeam/mysql-common-derive
Prepare 0.32.0 release
2 parents 59e8c3c + ec9a15b commit bd6a503

File tree

12 files changed

+609
-88
lines changed

12 files changed

+609
-88
lines changed

Cargo.toml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ license = "MIT/Apache-2.0"
77
name = "mysql_async"
88
readme = "README.md"
99
repository = "https://github.com/blackbeam/mysql_async"
10-
version = "0.31.3"
10+
version = "0.32.0"
1111
exclude = ["test/*"]
1212
edition = "2018"
1313
categories = ["asynchronous", "database"]
1414

1515
[dependencies]
16-
bytes = "1.0"
16+
bytes = "1.4"
1717
crossbeam = "0.8.1"
1818
flate2 = { version = "1.0", default-features = false }
1919
futures-core = "0.3"
@@ -22,7 +22,9 @@ futures-sink = "0.3"
2222
lazy_static = "1"
2323
lru = "0.10.0"
2424
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+
] }
2628
once_cell = "1.7.2"
2729
pem = "1.0.1"
2830
percent-encoding = "2.1.0"
@@ -34,7 +36,9 @@ socket2 = "0.4.2"
3436
thiserror = "1.0.4"
3537
tokio = { version = "1.0", features = ["io-util", "fs", "net", "time", "rt"] }
3638
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 }
3842
twox-hash = "1"
3943
url = "2.1"
4044

@@ -76,20 +80,20 @@ rand = "0.8.0"
7680
[features]
7781
default = [
7882
"flate2/zlib",
79-
"mysql_common/bigdecimal03",
83+
"mysql_common/bigdecimal",
8084
"mysql_common/rust_decimal",
81-
"mysql_common/time03",
82-
"mysql_common/uuid",
85+
"mysql_common/time",
8386
"mysql_common/frunk",
87+
"derive",
8488
"native-tls-tls",
8589
]
8690
default-rustls = [
8791
"flate2/zlib",
88-
"mysql_common/bigdecimal03",
92+
"mysql_common/bigdecimal",
8993
"mysql_common/rust_decimal",
90-
"mysql_common/time03",
91-
"mysql_common/uuid",
94+
"mysql_common/time",
9295
"mysql_common/frunk",
96+
"derive",
9397
"rustls-tls",
9498
]
9599
minimal = ["flate2/zlib"]
@@ -102,6 +106,7 @@ rustls-tls = [
102106
"rustls-pemfile",
103107
]
104108
tracing = ["dep:tracing"]
109+
derive = ["mysql_common/derive"]
105110
nightly = []
106111

107112
[lib]

0 commit comments

Comments
 (0)