Skip to content

update all deps #2370

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

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
807 changes: 408 additions & 399 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions sqlx-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ postgres = ["sqlx/postgres"]
sqlite = ["sqlx/sqlite"]

[dependencies]
criterion = "0.3.3"
dotenvy = "0.15.0"
once_cell = "1.4"
criterion = "0.4.0"
dotenvy = "0.15.6"
once_cell = "1.17.1"
sqlx = { workspace = true, default-features = false, features = ["macros"] }

chrono = "0.4.19"
chrono = "0.4.23"

[[bench]]
name = "pg_pool"
Expand Down
28 changes: 14 additions & 14 deletions sqlx-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,26 +26,26 @@ path = "src/bin/cargo-sqlx.rs"

[dependencies]
dotenvy = "0.15.0"
tokio = { version = "1.15.0", features = ["macros", "rt", "rt-multi-thread"] }
tokio = { version = "1.25.0", features = ["macros", "rt", "rt-multi-thread"] }
sqlx = { workspace = true, default-features = false, features = [
"migrate",
"any",
] }
futures = "0.3.19"
clap = { version = "3.1.0", features = ["derive", "env"] }
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
anyhow = "1.0.52"
url = { version = "2.2.2", default-features = false }
async-trait = "0.1.52"
console = "0.15.0"
promptly = "0.3.0"
serde_json = "1.0.73"
serde = { version = "1.0.132", features = ["derive"] }
glob = "0.3.0"
openssl = { version = "0.10.38", optional = true }
futures = "0.3.26"
clap = { version = "4.1.6", features = ["derive", "env"] }
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
anyhow = "1.0.69"
url = { version = "2.3.1", default-features = false }
async-trait = "0.1.64"
console = "0.15.5"
promptly = "0.3.1"
serde_json = "1.0.93"
serde = { version = "1.0.152", features = ["derive"] }
glob = "0.3.1"
openssl = { version = "0.10.45", optional = true }
# workaround for https://github.com/rust-lang/rust/issues/29497
remove_dir_all = "0.7.0"
cargo_metadata = "0.14"
cargo_metadata = "0.15.3"
filetime = "0.2"

backoff = { version = "0.4.0", features = ["futures", "tokio"] }
Expand Down
66 changes: 33 additions & 33 deletions sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,50 +49,50 @@ ipnetwork = { workspace = true, optional = true }
mac_address = { workspace = true, optional = true }
uuid = { workspace = true, optional = true }

async-io = { version = "1.9.0", optional = true }
paste = "1.0.6"
ahash = "0.7.6"
async-io = { version = "1.12.0", optional = true }
paste = "1.0.11"
ahash = "0.8.3"
atoi = "2.0"

bitflags = { version = "1.3.2", default-features = false }
bytes = "1.1.0"
bytes = "1.4.0"
byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
chrono = { version = "0.4.19", default-features = false, features = ["clock"], optional = true }
chrono = { version = "0.4.23", default-features = false, features = ["clock"], optional = true }
crc = { version = "3", optional = true }
crossbeam-queue = "0.3.2"
crossbeam-queue = "0.3.8"
digest = { version = "0.10.0", default-features = false, optional = true, features = ["std"] }
encoding_rs = { version = "0.8.30", optional = true }
either = "1.6.1"
futures-channel = { version = "0.3.19", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.19", default-features = false }
futures-io = "0.3.24"
encoding_rs = { version = "0.8.32", optional = true }
either = "1.8.1"
futures-channel = { version = "0.3.26", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.26", default-features = false }
futures-io = "0.3.26"
futures-intrusive = "0.5.0"
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink", "io"] }
generic-array = { version = "0.14.4", default-features = false, optional = true }
futures-util = { version = "0.3.26", default-features = false, features = ["alloc", "sink", "io"] }
generic-array = { version = "0.14.6", default-features = false, optional = true }
hex = "0.4.3"
log = { version = "0.4.14", default-features = false }
memchr = { version = "2.4.1", default-features = false }
num-bigint = { version = "0.4.0", default-features = false, optional = true, features = ["std"] }
once_cell = "1.9.0"
percent-encoding = "2.1.0"
regex = { version = "1.5.5", optional = true }
rsa = { version = "0.8.0", optional = true }
serde = { version = "1.0.132", features = ["derive", "rc"], optional = true }
serde_json = { version = "1.0.73", features = ["raw_value"], optional = true }
sha1 = { version = "0.10.1", default-features = false, optional = true }
sha2 = { version = "0.10.0", default-features = false, optional = true }
sqlformat = "0.2.0"
thiserror = "1.0.30"
tokio-stream = { version = "0.1.8", features = ["fs"], optional = true }
log = { version = "0.4.17", default-features = false }
memchr = { version = "2.5.0", default-features = false }
num-bigint = { version = "0.4.3", default-features = false, optional = true, features = ["std"] }
once_cell = "1.17.1"
percent-encoding = "2.2.0"
regex = { version = "1.7.1", optional = true }
rsa = { version = "0.8.1", optional = true }
serde = { version = "1.0.152", features = ["derive", "rc"], optional = true }
serde_json = { version = "1.0.93", features = ["raw_value"], optional = true }
sha1 = { version = "0.10.5", default-features = false, optional = true }
sha2 = { version = "0.10.6", default-features = false, optional = true }
sqlformat = "0.2.1"
thiserror = "1.0.38"
tokio-stream = { version = "0.1.12", features = ["fs"], optional = true }
tracing = { version = "0.1.37", features = ["log"] }
smallvec = "1.7.0"
url = { version = "2.2.2", default-features = false }
bstr = { version = "1.0", default-features = false, features = ["std"], optional = true }
hashlink = "0.8.0"
smallvec = "1.10.0"
url = { version = "2.3.1", default-features = false }
bstr = { version = "1.3.0", default-features = false, features = ["std"], optional = true }
hashlink = "0.8.1"
# NOTE: *must* remain below 1.7.0 to allow users to avoid the `ahash` cyclic dependency problem by pinning the version
# https://github.com/tkaitchuck/aHash/issues/95#issuecomment-874150078
indexmap = "1.6.0"
event-listener = "2.5.2"
indexmap = "1.9.2"
event-listener = "2.5.3"

dotenvy = "0.15"

Expand Down
18 changes: 9 additions & 9 deletions sqlx-macros-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ dotenvy = { workspace = true }

hex = { version = "0.4.3" }
heck = { version = "0.4", features = ["unicode"] }
either = "1.6.1"
once_cell = "1.9.0"
proc-macro2 = { version = "1.0.36", default-features = false }
serde = { version = "1.0.132", features = ["derive"] }
serde_json = { version = "1.0.73" }
sha2 = { version = "0.10.0" }
syn = { version = "1.0.84", default-features = false, features = ["full", "derive", "parsing", "printing", "clone-impls"] }
quote = { version = "1.0.14", default-features = false }
url = { version = "2.2.2", default-features = false }
either = "1.8.1"
once_cell = "1.17.1"
proc-macro2 = { version = "1.0.51", default-features = false }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0.93" }
sha2 = { version = "0.10.6" }
syn = { version = "1.0.107", default-features = false, features = ["full", "derive", "parsing", "printing", "clone-impls"] }
quote = { version = "1.0.23", default-features = false }
url = { version = "2.3.1", default-features = false }

6 changes: 3 additions & 3 deletions sqlx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ json = ["sqlx-macros-core/json"]
sqlx-core = { workspace = true, default-features = false, features = ["any"] }
sqlx-macros-core = { workspace = true }

proc-macro2 = { version = "1.0.36", default-features = false }
syn = { version = "1.0.84", default-features = false, features = ["full"] }
quote = { version = "1.0.14", default-features = false }
proc-macro2 = { version = "1.0.51", default-features = false }
syn = { version = "1.0.107", default-features = false, features = ["full"] }
quote = { version = "1.0.23", default-features = false }
50 changes: 25 additions & 25 deletions sqlx-mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ migrate = ["sqlx-core/migrate"]
sqlx-core = { workspace = true }

# Futures crates
futures-channel = { version = "0.3.19", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.19", default-features = false }
futures-io = "0.3.24"
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink", "io"] }
futures-channel = { version = "0.3.26", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.26", default-features = false }
futures-io = "0.3.26"
futures-util = { version = "0.3.26", default-features = false, features = ["alloc", "sink", "io"] }

# Cryptographic Primitives
crc = "3.0.0"
digest = { version = "0.10.0", default-features = false, features = ["std"] }
hkdf = "0.12.0"
hmac = { version = "0.12.0", default-features = false }
md-5 = { version = "0.10.0", default-features = false }
rand = { version = "0.8.4", default-features = false, features = ["std", "std_rng"] }
rsa = "0.8.0"
sha1 = { version = "0.10.1", default-features = false }
sha2 = { version = "0.10.0", default-features = false }
crc = "3.0.1"
digest = { version = "0.10.6", default-features = false, features = ["std"] }
hkdf = "0.12.3"
hmac = { version = "0.12.1", default-features = false }
md-5 = { version = "0.10.5", default-features = false }
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
rsa = "0.8.1"
sha1 = { version = "0.10.5", default-features = false }
sha2 = { version = "0.10.6", default-features = false }

# Type Integrations (versions inherited from `[workspace.dependencies]`)
bigdecimal = { workspace = true, optional = true }
Expand All @@ -47,21 +47,21 @@ atoi = "2.0"
base64 = { version = "0.21.0", default-features = false, features = ["std"] }
bitflags = { version = "1.3.2", default-features = false }
byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
bytes = "1.1.0"
dotenvy = "0.15.5"
bytes = "1.4.0"
dotenvy = "0.15.6"
dirs = "4.0.0"
either = "1.6.1"
generic-array = { version = "0.14.4", default-features = false }
either = "1.8.1"
generic-array = { version = "0.14.6", default-features = false }
hex = "0.4.3"
itoa = "1.0.1"
itoa = "1.0.5"
log = "0.4.17"
memchr = { version = "2.4.1", default-features = false }
once_cell = "1.9.0"
percent-encoding = "2.1.0"
smallvec = "1.7.0"
memchr = { version = "2.5.0", default-features = false }
once_cell = "1.17.1"
percent-encoding = "2.2.0"
smallvec = "1.10.0"
stringprep = "0.1.2"
thiserror = "1.0.35"
thiserror = "1.0.38"
tracing = { version = "0.1.37", features = ["log"] }
whoami = { version = "1.2.1", default-features = false }
whoami = { version = "1.3.0", default-features = false }

serde = { version = "1.0.144", optional = true }
serde = { version = "1.0.152", optional = true }
38 changes: 19 additions & 19 deletions sqlx-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ rust_decimal = ["dep:rust_decimal", "dep:num-bigint"]

[dependencies]
# Futures crates
futures-channel = { version = "0.3.19", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.19", default-features = false }
futures-io = "0.3.24"
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink", "io"] }
futures-channel = { version = "0.3.26", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.26", default-features = false }
futures-io = "0.3.26"
futures-util = { version = "0.3.26", default-features = false, features = ["alloc", "sink", "io"] }

# Cryptographic Primitives
crc = "3.0.0"
hkdf = "0.12.0"
hmac = { version = "0.12.0", default-features = false }
md-5 = { version = "0.10.0", default-features = false }
rand = { version = "0.8.4", default-features = false, features = ["std", "std_rng"] }
sha1 = { version = "0.10.1", default-features = false }
sha2 = { version = "0.10.0", default-features = false }
crc = "3.0.1"
hkdf = "0.12.3"
hmac = { version = "0.12.1", default-features = false }
md-5 = { version = "0.10.5", default-features = false }
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
sha1 = { version = "0.10.5", default-features = false }
sha2 = { version = "0.10.6", default-features = false }

# Type Integrations (versions inherited from `[workspace.dependencies]`)
bigdecimal = { workspace = true, optional = true }
Expand All @@ -52,19 +52,19 @@ byteorder = { version = "1.4.3", default-features = false, features = ["std"] }
dirs = "4.0.0"
dotenvy = { workspace = true }
hex = "0.4.3"
itoa = "1.0.1"
itoa = "1.0.5"
log = "0.4.17"
memchr = { version = "2.4.1", default-features = false }
memchr = { version = "2.5.0", default-features = false }
num-bigint = { version = "0.4.3", optional = true }
once_cell = "1.9.0"
smallvec = "1.7.0"
once_cell = "1.17.1"
smallvec = "1.10.0"
stringprep = "0.1.2"
thiserror = "1.0.35"
thiserror = "1.0.38"
tracing = { version = "0.1.37", features = ["log"] }
whoami = { version = "1.2.1", default-features = false }
whoami = { version = "1.3.0", default-features = false }

serde = { version = "1.0.144", features = ["derive"] }
serde_json = { version = "1.0.85", features = ["raw_value"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = { version = "1.0.93", features = ["raw_value"] }

[dependencies.sqlx-core]
workspace = true
Expand Down
20 changes: 10 additions & 10 deletions sqlx-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,34 +20,34 @@ chrono = ["dep:chrono", "bitflags"]
regexp = ["dep:regex"]

[dependencies]
futures-core = { version = "0.3.19", default-features = false }
futures-channel = { version = "0.3.19", default-features = false, features = ["sink", "alloc", "std"] }
futures-core = { version = "0.3.26", default-features = false }
futures-channel = { version = "0.3.26", default-features = false, features = ["sink", "alloc", "std"] }
# used by the SQLite worker thread to block on the async mutex that locks the database handle
futures-executor = { version = "0.3.19" }
futures-executor = { version = "0.3.26" }
futures-intrusive = "0.5.0"
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink"] }
futures-util = { version = "0.3.26", default-features = false, features = ["alloc", "sink"] }

chrono = { workspace = true, optional = true }
time = { workspace = true, optional = true }
uuid = { workspace = true, optional = true }

bitflags = { version = "1.3.2", optional = true }

url = { version = "2.2.2", default-features = false }
percent-encoding = "2.1.0"
url = { version = "2.3.1", default-features = false }
percent-encoding = "2.2.0"

flume = { version = "0.10.9", default-features = false, features = ["async"] }
flume = { version = "0.10.14", default-features = false, features = ["async"] }

atoi = "2.0"

log = "0.4.17"
tracing = { version = "0.1.37", features = ["log"] }

serde = { version = "1.0.145", features = ["derive"], optional = true }
regex = { version = "1.5.5", optional = true }
serde = { version = "1.0.152", features = ["derive"], optional = true }
regex = { version = "1.7.1", optional = true }

[dependencies.libsqlite3-sys]
version = "0.25.1"
version = "0.25.2"
default-features = false
features = [
"pkg-config",
Expand Down
10 changes: 5 additions & 5 deletions sqlx-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[dependencies]
sqlx = { default-features = false, path = ".." }
env_logger = "0.9.0"
dotenvy = "0.15.0"
anyhow = "1.0.26"
async-std = { version = "1.8.0", features = [ "attributes" ] }
tokio = { version = "1.0.1", features = [ "full" ] }
env_logger = "0.10.0"
dotenvy = "0.15.6"
anyhow = "1.0.69"
async-std = { version = "1.12.0", features = [ "attributes" ] }
tokio = { version = "1.25.0", features = [ "full" ] }