Skip to content

Commit b934f82

Browse files
Bump remanining dependencies (#1807)
Co-authored-by: Austin Bonander <[email protected]>
1 parent fc9c9be commit b934f82

File tree

7 files changed

+48
-69
lines changed

7 files changed

+48
-69
lines changed

Cargo.lock

Lines changed: 40 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ sqlx-macros = { version = "0.5.12", path = "sqlx-macros", default-features = fal
139139
anyhow = "1.0.52"
140140
time_ = { version = "0.3.2", package = "time" }
141141
futures = "0.3.19"
142-
env_logger = "0.8.4"
142+
env_logger = "0.9.0"
143143
async-std = { version = "1.10.0", features = ["attributes"] }
144144
tokio = { version = "1.15.0", features = ["full"] }
145145
dotenv = "0.15.0"

examples/postgres/mockable-todos/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ sqlx = { path = "../../../", features = ["postgres", "offline", "runtime-async-s
1313
structopt = { version = "0.3", features = ["paw"] }
1414
dotenv = "0.15.0"
1515
async-trait = "0.1.41"
16-
mockall = "0.8.3"
16+
mockall = "0.11"

sqlx-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ chrono = "0.4.19"
3838
anyhow = "1.0.52"
3939
url = { version = "2.2.2", default-features = false }
4040
async-trait = "0.1.52"
41-
console = "0.14.1"
41+
console = "0.15.0"
4242
promptly = "0.3.0"
4343
serde_json = "1.0.73"
4444
serde = { version = "1.0.132", features = ["derive"] }

sqlx-core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ offline = ["serde", "either/serde"]
116116
[dependencies]
117117
paste = "1.0.6"
118118
ahash = "0.7.6"
119-
atoi = "0.4.0"
120-
sqlx-rt = { path = "../sqlx-rt", version = "0.5.12" }
119+
atoi = "1.0"
120+
sqlx-rt = { path = "../sqlx-rt", version = "0.5.12"}
121121
base64 = { version = "0.13.0", default-features = false, optional = true, features = ["std"] }
122122
bigdecimal_ = { version = "0.3.0", optional = true, package = "bigdecimal" }
123123
rust_decimal = { version = "1.19.0", optional = true }
@@ -179,7 +179,7 @@ whoami = { version = "1.2.1", optional = true }
179179
stringprep = "0.1.2"
180180
bstr = { version = "0.2.17", default-features = false, features = ["std"], optional = true }
181181
git2 = { version = "0.14", default-features = false, optional = true }
182-
hashlink = "0.7.0"
182+
hashlink = "0.8.0"
183183
# NOTE: *must* remain below 1.7.0 to allow users to avoid the `ahash` cyclic dependency problem by pinning the version
184184
# https://github.com/tkaitchuck/aHash/issues/95#issuecomment-874150078
185185
indexmap = "1.6.0"

sqlx-rt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ _tls-native-tls = ["native-tls"]
3131
_tls-rustls = []
3232

3333
[dependencies]
34-
async-native-tls = { version = "0.3.3", optional = true }
34+
async-native-tls = { version = "0.4.0", optional = true }
3535
futures-rustls = { version = "0.22.0", optional = true }
3636
actix-rt = { version = "2.0.0", default-features = false, optional = true }
3737
async-std = { version = "1.7.0", features = ["unstable"], optional = true }

sqlx-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77
[dependencies]
88
sqlx = { default-features = false, path = ".." }
9-
env_logger = "0.7.1"
9+
env_logger = "0.9.0"
1010
dotenv = "0.15.0"
1111
anyhow = "1.0.26"
1212
async-std = { version = "1.8.0", features = [ "attributes" ] }

0 commit comments

Comments
 (0)