Skip to content

Commit d6510d3

Browse files
committed
fix: Minimally upgrade minimal dependencies to resolve build issues on declared minimum versions
Signed-off-by: Joshua Potts <[email protected]>
1 parent 4a54753 commit d6510d3

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ sqlx = { version = "=0.8.0-alpha.0", path = ".", default-features = false }
132132
# These are optional unless enabled in a workspace crate.
133133
bigdecimal = "0.4.0"
134134
bit-vec = "0.6.3"
135-
chrono = { version = "0.4.22", default-features = false }
135+
chrono = { version = "0.4.38", default-features = false }
136136
ipnetwork = "0.20.0"
137137
mac_address = "1.1.5"
138138
rust_decimal = { version = "1.26.1", default-features = false, features = ["std"] }

sqlx-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ futures-io = "0.3.24"
6767
futures-intrusive = "0.5.0"
6868
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink", "io"] }
6969
hex = "0.4.3"
70-
log = { version = "0.4.14", default-features = false }
70+
log = { version = "0.4.18", default-features = false }
7171
memchr = { version = "2.4.1", default-features = false }
7272
num-bigint = { version = "0.4.0", default-features = false, optional = true, features = ["std"] }
7373
once_cell = "1.9.0"

sqlx-mysql/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ either = "1.6.1"
5353
generic-array = { version = "0.14.4", default-features = false }
5454
hex = "0.4.3"
5555
itoa = "1.0.1"
56-
log = "0.4.17"
56+
log = "0.4.18"
5757
memchr = { version = "2.4.1", default-features = false }
5858
once_cell = "1.9.0"
5959
percent-encoding = "2.1.0"

sqlx-mysql/src/types/chrono.rs

+1
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ impl Encode<'_, MySql> for NaiveDateTime {
235235
self.hour(),
236236
self.minute(),
237237
self.second(),
238+
#[allow(deprecated)]
238239
self.timestamp_subsec_nanos(),
239240
) {
240241
// if hour, minutes, seconds and micro_seconds are all 0,

sqlx-postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dotenvy = { workspace = true }
5353
hex = "0.4.3"
5454
home = "0.5.5"
5555
itoa = "1.0.1"
56-
log = "0.4.17"
56+
log = "0.4.18"
5757
memchr = { version = "2.4.1", default-features = false }
5858
num-bigint = { version = "0.4.3", optional = true }
5959
once_cell = "1.9.0"

sqlx-sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ flume = { version = "0.11.0", default-features = false, features = ["async"] }
3939

4040
atoi = "2.0"
4141

42-
log = "0.4.17"
42+
log = "0.4.18"
4343
tracing = { version = "0.1.37", features = ["log"] }
4444

4545
serde = { version = "1.0.145", features = ["derive"], optional = true }

0 commit comments

Comments
 (0)