Skip to content
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

Update dependencies and especially deadpool #223

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Update dependencies
  • Loading branch information
Virgiel committed Oct 17, 2023
commit a2d692c805f54eb9ec9705660ae57ef586e11372
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"
Loading