Skip to content

Commit

Permalink
Merge pull request #242 from blackbeam/mysql-common-derive
Browse files Browse the repository at this point in the history
Prepare 0.32.0 release
  • Loading branch information
blackbeam authored Apr 12, 2023
2 parents 59e8c3c + ec9a15b commit bd6a503
Show file tree
Hide file tree
Showing 12 changed files with 609 additions and 88 deletions.
25 changes: 15 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ license = "MIT/Apache-2.0"
name = "mysql_async"
readme = "README.md"
repository = "https://github.com/blackbeam/mysql_async"
version = "0.31.3"
version = "0.32.0"
exclude = ["test/*"]
edition = "2018"
categories = ["asynchronous", "database"]

[dependencies]
bytes = "1.0"
bytes = "1.4"
crossbeam = "0.8.1"
flate2 = { version = "1.0", default-features = false }
futures-core = "0.3"
Expand All @@ -22,7 +22,9 @@ futures-sink = "0.3"
lazy_static = "1"
lru = "0.10.0"
mio = { version = "0.8.0", features = ["os-poll", "net"] }
mysql_common = { version = "0.29.2", default-features = false }
mysql_common = { version = "0.30", default-features = false, features = [
"derive",
] }
once_cell = "1.7.2"
pem = "1.0.1"
percent-encoding = "2.1.0"
Expand All @@ -34,7 +36,9 @@ socket2 = "0.4.2"
thiserror = "1.0.4"
tokio = { version = "1.0", features = ["io-util", "fs", "net", "time", "rt"] }
tokio-util = { version = "0.7.2", features = ["codec", "io"] }
tracing = { version = "0.1.37", default-features = false, features = ["attributes"], optional = true }
tracing = { version = "0.1.37", default-features = false, features = [
"attributes",
], optional = true }
twox-hash = "1"
url = "2.1"

Expand Down Expand Up @@ -76,20 +80,20 @@ rand = "0.8.0"
[features]
default = [
"flate2/zlib",
"mysql_common/bigdecimal03",
"mysql_common/bigdecimal",
"mysql_common/rust_decimal",
"mysql_common/time03",
"mysql_common/uuid",
"mysql_common/time",
"mysql_common/frunk",
"derive",
"native-tls-tls",
]
default-rustls = [
"flate2/zlib",
"mysql_common/bigdecimal03",
"mysql_common/bigdecimal",
"mysql_common/rust_decimal",
"mysql_common/time03",
"mysql_common/uuid",
"mysql_common/time",
"mysql_common/frunk",
"derive",
"rustls-tls",
]
minimal = ["flate2/zlib"]
Expand All @@ -102,6 +106,7 @@ rustls-tls = [
"rustls-pemfile",
]
tracing = ["dep:tracing"]
derive = ["mysql_common/derive"]
nightly = []

[lib]
Expand Down
Loading

0 comments on commit bd6a503

Please sign in to comment.