Skip to content

Commit

Permalink
Upgrade dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGariepy committed Nov 7, 2022
1 parent adfd751 commit 1ab096b
Show file tree
Hide file tree
Showing 9 changed files with 279 additions and 223 deletions.
451 changes: 254 additions & 197 deletions Cargo.lock

Large diffs are not rendered by default.

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

[dependencies]
tokio = { version = "1.21.1", features = ["full"] }
futures = "0.3.24"
tokio = { version = "1.21.2", features = ["full"] }
futures = "0.3.25"
criterion = { version = "0.4.0", features = ["html_reports"] }
postgres = "0.19.4"
tokio-postgres = "0.7.7"
postgres-types = "0.2.4"
diesel = { version = "2.0.0", features = ["postgres"] }
diesel = { version = "2.0.2", features = ["postgres"] }

cornucopia = { path = "../cornucopia" }
cornucopia_sync = { path = "../clients/sync" }
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.57"
deadpool-postgres = { version = "0.10.2", optional = true }
async-trait = "0.1.58"
deadpool-postgres = { version = "0.10.3", optional = true }

cornucopia_client_core = { path = "../core", version = "0.3.1" }
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.144", package = "serde", optional = true }
serde_json-1 = { version = "1.0.85", package = "serde_json", optional = true }
serde-1 = { version = "1.0.147", package = "serde", optional = true }
serde_json-1 = { version = "1.0.87", package = "serde_json", optional = true }

[features]
with-serde_json-1 = [
Expand Down
12 changes: 5 additions & 7 deletions codegen_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ tokio-postgres = { version = "0.7.7", features = [
"with-eui48-1",
] }
postgres-types = { version = "0.2.4", features = ["derive"] }
serde = { version = "1.0.144", features = ["derive"], package = "serde" }
serde_json = { version = "1.0.85", features = [
"raw_value",
], package = "serde_json" }
time = { version = "0.3.14", features = ["parsing", "serde"] }
uuid = { version = "1.1.2", features = ["serde"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = { version = "1.0.87", features = ["raw_value"] }
time = { version = "0.3.16", features = ["parsing", "serde"] }
uuid = { version = "1.2.1", features = ["serde"] }
eui48 = { version = "1.1.0", features = ["serde"] }
rust_decimal = { version = "1.26.1", features = ["db-postgres"] }
futures = "0.3.24"
futures = "0.3.25"

cornucopia_sync = { path = "../clients/sync", features = ["with-serde_json-1"] }
cornucopia_async = { path = "../clients/async", features = [
Expand Down
9 changes: 5 additions & 4 deletions cornucopia/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ categories = ["database"]
keywords = ["postgresql", "query", "generator", "sql", "tokio-postgres"]

[dependencies]
code = { path = "../code" }

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

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

cornucopia_async = { path = "../../clients/async" }
Expand Down
6 changes: 3 additions & 3 deletions examples/basic_async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name = "basic-async"
version = "0.1.0"

[dependencies]
tokio = { version = "1.21.1", features = ["full"] }
deadpool-postgres = "0.10.2"
futures = "0.3.24"
tokio = { version = "1.21.2", features = ["full"] }
deadpool-postgres = "0.10.3"
futures = "0.3.25"
postgres-types = { version = "0.2.4", features = ["derive"] }
tokio-postgres = "0.7.7"
cornucopia_async = { path = "../../clients/async" }
4 changes: 2 additions & 2 deletions integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
tempfile = "3.3.0"
toml = "0.5.9"
owo-colors = "3.5.0"
serde = { version = "1.0.144", features = ["derive"], package = "serde" }
clap = { version = "3.2.21", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
clap = { version = "4.0.18", features = ["derive"] }
cornucopia = { path = "../cornucopia" }
postgres = "0.19.4"

0 comments on commit 1ab096b

Please sign in to comment.