Skip to content

Commit

Permalink
upgrade mysql_async, mysql_common
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan committed Sep 9, 2023
1 parent 8526222 commit 02e41b0
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 28 deletions.
66 changes: 44 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ itertools = "0.11"
jsonschema-transpiler = "1.10.0"
maplit = "1.0.2"
moka = { version = "0.11", features = ["future"] }
mysql_async = { version = "0.31", default-features = false, features = ["default"] }
mysql_common = { version = "0.29.2", default-features = false, features = ["chrono"] }
mysql_async = { version = "0.32", default-features = false, features = ["default"] }
mysql_common = { version = "0.30", default-features = false, features = ["chrono"] }
nexmark = { version = "0.2", features = ["serde"] }
num-bigint = "0.4"
opendal = "0.39"
Expand Down
14 changes: 10 additions & 4 deletions src/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ anyhow = { version = "1", features = ["backtrace"] }
aws-credential-types = { version = "0.55", default-features = false, features = ["hardcoded-credentials"] }
aws-sdk-s3 = { version = "0.28", features = ["native-tls"] }
aws-smithy-client = { version = "0.55", default-features = false, features = ["native-tls", "rustls"] }
base64 = { version = "0.21", features = ["alloc"] }
bitflags = { version = "2", default-features = false, features = ["std"] }
byteorder = { version = "1", features = ["i128"] }
bytes = { version = "1", features = ["serde"] }
Expand Down Expand Up @@ -91,13 +92,16 @@ serde = { version = "1", features = ["alloc", "derive", "rc"] }
serde_json = { version = "1", features = ["alloc"] }
serde_with = { version = "3", features = ["json"] }
smallvec = { version = "1", default-features = false, features = ["serde", "union", "write"] }
socket2 = { version = "0.5", default-features = false, features = ["all"] }
subtle = { version = "2" }
time = { version = "0.3", features = ["local-offset", "macros", "serde-well-known"] }
tinyvec = { version = "1", features = ["alloc", "grab_spare_slice", "rustc_1_55"] }
tokio = { version = "1", features = ["full", "stats", "tracing"] }
tokio-postgres = { git = "https://github.com/madsim-rs/rust-postgres.git", rev = "4538cd6", features = ["with-chrono-0_4"] }
tokio-stream = { git = "https://github.com/madsim-rs/tokio.git", rev = "fe39bb8e", features = ["fs", "net"] }
tokio-util = { version = "0.7", features = ["codec", "io"] }
toml_datetime = { version = "0.6", default-features = false, features = ["serde"] }
toml_edit = { version = "0.19", features = ["serde"] }
tonic = { version = "0.9", features = ["gzip", "tls-webpki-roots"] }
tower = { version = "0.4", features = ["balance", "buffer", "filter", "limit", "load-shed", "retry", "timeout", "util"] }
tracing = { version = "0.1", features = ["log"] }
Expand All @@ -116,6 +120,7 @@ auto_enums = { version = "0.8", features = ["futures03"] }
aws-credential-types = { version = "0.55", default-features = false, features = ["hardcoded-credentials"] }
aws-sdk-s3 = { version = "0.28", features = ["native-tls"] }
aws-smithy-client = { version = "0.55", default-features = false, features = ["native-tls", "rustls"] }
base64 = { version = "0.21", features = ["alloc"] }
bitflags = { version = "2", default-features = false, features = ["std"] }
byteorder = { version = "1", features = ["i128"] }
bytes = { version = "1", features = ["serde"] }
Expand All @@ -126,8 +131,6 @@ clap_builder = { version = "4", default-features = false, features = ["cargo", "
combine = { version = "4" }
crossbeam-epoch = { version = "0.9" }
crossbeam-utils = { version = "0.8" }
darling = { version = "0.14" }
darling_core = { version = "0.14", default-features = false, features = ["suggestions"] }
deranged = { version = "0.3", default-features = false, features = ["serde", "std"] }
either = { version = "1" }
fail = { version = "0.5", default-features = false, features = ["failpoints"] }
Expand Down Expand Up @@ -188,16 +191,19 @@ serde = { version = "1", features = ["alloc", "derive", "rc"] }
serde_json = { version = "1", features = ["alloc"] }
serde_with = { version = "3", features = ["json"] }
smallvec = { version = "1", default-features = false, features = ["serde", "union", "write"] }
socket2 = { version = "0.5", default-features = false, features = ["all"] }
subtle = { version = "2" }
syn-dff4ba8e3ae991db = { package = "syn", version = "1", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", features = ["extra-traits", "full", "visit", "visit-mut"] }
syn-dff4ba8e3ae991db = { package = "syn", version = "1", features = ["extra-traits", "full", "visit", "visit-mut"] }
syn-f595c2ba2a3f28df = { package = "syn", version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
time = { version = "0.3", features = ["local-offset", "macros", "serde-well-known"] }
time-macros = { version = "0.2", default-features = false, features = ["formatting", "parsing", "serde"] }
tinyvec = { version = "1", features = ["alloc", "grab_spare_slice", "rustc_1_55"] }
tokio = { version = "1", features = ["full", "stats", "tracing"] }
tokio-postgres = { git = "https://github.com/madsim-rs/rust-postgres.git", rev = "4538cd6", features = ["with-chrono-0_4"] }
tokio-stream = { git = "https://github.com/madsim-rs/tokio.git", rev = "fe39bb8e", features = ["fs", "net"] }
tokio-util = { version = "0.7", features = ["codec", "io"] }
toml_datetime = { version = "0.6", default-features = false, features = ["serde"] }
toml_edit = { version = "0.19", features = ["serde"] }
tonic = { version = "0.9", features = ["gzip", "tls-webpki-roots"] }
tower = { version = "0.4", features = ["balance", "buffer", "filter", "limit", "load-shed", "retry", "timeout", "util"] }
tracing = { version = "0.1", features = ["log"] }
Expand Down

0 comments on commit 02e41b0

Please sign in to comment.