Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Virgiel committed Oct 17, 2023
1 parent 5098729 commit a2d692c
Show file tree
Hide file tree
Showing 8 changed files with 595 additions and 561 deletions.
1,143 changes: 588 additions & 555 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"examples/*",
"test_integration",
Expand Down
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cornucopia_sync = { path = "../crates/client_sync" }
cornucopia_async = { path = "../crates/client_async" }

# benchmarking
criterion = { version = "0.4.0", features = ["html_reports"] }
criterion = { version = "0.5.1", features = ["html_reports"] }

# async
tokio = { version = "1.24.2", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/client_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ async-trait = "0.1.63"
tokio-postgres = "0.7.7"

# connection pooling
deadpool-postgres = { version = "0.10.4", optional = true }
deadpool-postgres = { version = "0.11.0", optional = true }
2 changes: 1 addition & 1 deletion crates/cornucopia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ clap = { version = "4.1.1", features = ["derive"] }
heck = "0.4.0"

# Order-preserving map to work around borrowing issues
indexmap = "1.9.2"
indexmap = "2.0.2"
2 changes: 1 addition & 1 deletion examples/auto_build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ futures = "0.3.25"
tokio-postgres = "0.7.7"
postgres-types = "0.2.4"
## Connection pooling
deadpool-postgres = "0.10.4"
deadpool-postgres = "0.11.0"

[build-dependencies]
# Cornucopia library to automatically
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ futures = "0.3.25"
tokio-postgres = "0.7.7"
postgres-types = { version = "0.2.4", features = ["derive"] }
## Connection pooling
deadpool-postgres = "0.10.4"
deadpool-postgres = "0.11.0"
2 changes: 1 addition & 1 deletion test_integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ postgres = { version = "0.19.4" }
## Test fixtures ser/de
serde = { version = "1.0.148", features = ["derive"] }
## Read/write fixture files
toml = "0.7.2"
toml = "0.8.2"

0 comments on commit a2d692c

Please sign in to comment.