Skip to content

Commit

Permalink
Merge pull request cornucopia-rs#197 from cornucopia-rs/upgrade_depen…
Browse files Browse the repository at this point in the history
…dencies

Upgrade dependencies
  • Loading branch information
LouisGariepy authored Jan 22, 2023
2 parents a4e6497 + 389971d commit ae941cd
Show file tree
Hide file tree
Showing 9 changed files with 362 additions and 143 deletions.
465 changes: 342 additions & 123 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.21.2", features = ["full"] }
tokio = { version = "1.24.2", features = ["full"] }
futures = "0.3.25"
criterion = { version = "0.4.0", features = ["html_reports"] }
postgres = "0.19.4"
Expand Down
4 changes: 2 additions & 2 deletions clients/async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ with-serde_json-1 = ["cornucopia_client_core/with-serde_json-1"]

[dependencies]
tokio-postgres = "0.7.7"
async-trait = "0.1.58"
deadpool-postgres = { version = "0.10.3", optional = true }
async-trait = "0.1.63"
deadpool-postgres = { version = "0.10.4", optional = true }

cornucopia_client_core = { path = "../core", version = "0.4.0" }
4 changes: 2 additions & 2 deletions clients/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ keywords = ["postgresql", "query", "generator", "sql", "tokio-postgres"]
postgres-protocol = "0.6.4"
postgres-types = "0.2.4"
fallible-iterator = "0.2.0"
serde-1 = { version = "1.0.147", package = "serde", optional = true }
serde_json-1 = { version = "1.0.87", package = "serde_json", optional = true }
serde-1 = { version = "1.0.152", package = "serde", optional = true }
serde_json-1 = { version = "1.0.91", package = "serde_json", optional = true }

[features]
with-serde_json-1 = [
Expand Down
8 changes: 4 additions & 4 deletions codegen_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ tokio-postgres = { version = "0.7.7", features = [
"with-eui48-1",
] }
postgres-types = { version = "0.2.4", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"], package = "serde" }
serde_json = { version = "1.0.87", features = ["raw_value"], package = "serde_json" }
serde = { version = "1.0.152", features = ["derive"], package = "serde" }
serde_json = { version = "1.0.91", features = ["raw_value"], package = "serde_json" }
time = { version = "0.3.17", features = ["parsing", "serde"] }
uuid = { version = "1.2.1", features = ["serde"] }
uuid = { version = "1.2.2", features = ["serde"] }
eui48 = { version = "1.1.0", features = ["serde"] }
rust_decimal = { version = "1.26.1", features = ["db-postgres"] }
rust_decimal = { version = "1.28.0", features = ["db-postgres"] }
futures = "0.3.25"

cornucopia_sync = { path = "../clients/sync", features = ["with-serde_json-1"] }
Expand Down
8 changes: 4 additions & 4 deletions cornucopia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ codegen_template = { path = "../codegen_template", version = "0.1.0" }

postgres = "0.19.4"
postgres-types = "0.2.4"
thiserror = "1.0.37"
miette = { version = "5.4.1", features = ["fancy"] }
clap = { version = "4.0.19", features = ["derive"] }
thiserror = "1.0.38"
miette = { version = "5.5.0", features = ["fancy"] }
clap = { version = "4.1.1", features = ["derive"] }
heck = "0.4.0"
indexmap = "1.9.1"
indexmap = "1.9.2"
chumsky = "0.8.0"
4 changes: 2 additions & 2 deletions examples/auto_build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.21.2", features = ["full"] }
tokio = { version = "1.24.2", features = ["full"] }
tokio-postgres = "0.7.7"
deadpool-postgres = "0.10.3"
deadpool-postgres = "0.10.4"
futures = "0.3.25"
postgres-types = "0.2.4"

Expand Down
4 changes: 2 additions & 2 deletions examples/basic_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ name = "basic-async"
version = "0.1.0"

[dependencies]
tokio = { version = "1.21.2", features = ["full"] }
deadpool-postgres = "0.10.3"
tokio = { version = "1.24.2", features = ["full"] }
deadpool-postgres = "0.10.4"
futures = "0.3.25"
postgres-types = { version = "0.2.4", features = ["derive"] }
tokio-postgres = "0.7.7"
Expand Down
6 changes: 3 additions & 3 deletions integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ edition = "2021"

[dependencies]
tempfile = "3.3.0"
toml = "0.5.9"
toml = "0.5.11"
owo-colors = "3.5.0"
serde = { version = "1.0.147", features = ["derive"], package = "serde" }
clap = { version = "4.0.19", features = ["derive"] }
serde = { version = "1.0.152", features = ["derive"], package = "serde" }
clap = { version = "4.1.1", features = ["derive"] }
cornucopia = { path = "../cornucopia" }
postgres = "0.19.4"

0 comments on commit ae941cd

Please sign in to comment.