-
Notifications
You must be signed in to change notification settings - Fork 134
v0.28.0 release #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.28.0 release #154
Conversation
|
One other thing that would be absolutely swell, @blackbeam, since you were kind enough to merge blackbeam/rust_mysql_common#31, would be to make those features optional here too. Unfortunately the only way I know how to do this is to duplicate the features here: diff --git a/Cargo.toml b/Cargo.toml
index a4345a7..de54360 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -13,13 +13,14 @@ edition = "2018"
[dependencies]
bytes = "1.0"
+flate2 = { version = "1.0", default-features = false }
futures-core = "0.3"
futures-util = "0.3"
futures-sink = "0.3"
lazy_static = "1"
lru = "0.6.0"
mio = "0.7.7"
-mysql_common = "0.26.0"
+mysql_common = { version = "0.27.0", default-features = false }
native-tls = "0.2"
pem = "0.8.1"
percent-encoding = "2.1.0"
@@ -42,6 +43,15 @@ rand = "0.8.0"
[features]
nightly = []
+default = [
+ "flate2/zlib",
+ "mysql_common/bigdecimal",
+ "mysql_common/chrono",
+ "mysql_common/rust_decimal",
+ "mysql_common/time",
+ "mysql_common/uuid",
+ "mysql_common/frunk",
+]
[lib]
name = "mysql_async"If you're open to this I'd be delighted to submit a PR, though I certainly wouldn't complain if you just integrated the changes here! :D |
|
Looking forward to this release as I need to subscribe for update events (binlog support). |
|
@rohitjoshi, hi. I still need to fix some hard-to-reproduce issues, but the API shouldn't change. |
|
No, I have not tried. We will prioritize in the next sprint and may use branch for testing. |
6415e5a to
bd41dcd
Compare
e921ce0 to
286ff02
Compare
No description provided.