Skip to content

Commit

Permalink
Update ui/nexus dependencies (#1431)
Browse files Browse the repository at this point in the history
flow still waiting on temporal sdk 1.26
  • Loading branch information
serprex authored Mar 4, 2024
1 parent 81c9320 commit ba6feaa
Show file tree
Hide file tree
Showing 10 changed files with 457 additions and 415 deletions.
219 changes: 113 additions & 106 deletions nexus/Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions nexus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ members = [
resolver = "2"

[workspace.dependencies]
chrono = { version = "0.4", default-features = false, features = ["serde", "std"] }
sqlparser = { git = "https://github.com/peerdb-io/sqlparser-rs.git" }
pgwire = "0.19"
2 changes: 1 addition & 1 deletion nexus/catalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1"
async-trait = "0.1"
chrono = { version = "0.4.22", default-features = false }
chrono.workspace = true
prost = "0.12"
peer-cursor = { path = "../peer-cursor" }
peer-postgres = { path = "../peer-postgres" }
Expand Down
2 changes: 1 addition & 1 deletion nexus/peer-bigquery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
chrono.workspace = true
dashmap = "5.0"
futures = { version = "0.3.28", features = ["executor"] }
peer-cursor = { path = "../peer-cursor" }
Expand Down
2 changes: 1 addition & 1 deletion nexus/peer-connections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
chrono = { version = "0.4" }
chrono.workspace = true
deadpool-postgres = { version = "0.12", features = ["rt_tokio_1"] }
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7.6", features = [
Expand Down
2 changes: 1 addition & 1 deletion nexus/peer-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ anyhow = "1.0"
async-trait = "0.1"
rust_decimal = { version = "1.30.0", features = [ "tokio-pg" ] }
bytes = "1.0"
chrono = { version = "0.4", features = ["serde"] }
chrono.workspace = true
futures = "0.3"
peer-cursor = { path = "../peer-cursor" }
peer-connections = { path = "../peer-connections" }
Expand Down
30 changes: 15 additions & 15 deletions nexus/peer-snowflake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
catalog = { path = "../catalog" }
peer-cursor = { path = "../peer-cursor" }
sqlparser.workspace = true
value = { path = "../value" }
tracing = "0.1"
secrecy = { version = "0.8.0" }
anyhow = "1.0"
async-recursion = "1.0.0"
async-trait = "0.1.57"
jsonwebtoken = { version = "9.0", features = ["use_pem"] }
base64 = "0.21"
catalog = { path = "../catalog" }
chrono.workspace = true
dashmap = "5.0"
futures = "0.3"
hex = "0.4"
jsonwebtoken = { version = "9.0", features = ["use_pem"] }
peer-cursor = { path = "../peer-cursor" }
pgwire.workspace = true
sha2 = "0.10"
pt = { path = "../pt" }
reqwest = { version = "0.11", default-features = false, features = ["json", "gzip", "rustls-tls"] }
rsa = { version = "0.9.2", features = ["pem", "pkcs5"] }
secrecy = { version = "0.8.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
ureq = { version = "2", features = ["json", "charset"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "gzip", "rustls-tls"] }
anyhow = "1.0"
sha2 = "0.10"
sqlparser.workspace = true
tokio = { version = "1.21", features = ["full"] }
hex = "0.4"
chrono = { version = "0.4.22", default-features = false }
async-recursion = "1.0.0"
tracing = "0.1"
ureq = { version = "2", features = ["json", "charset"] }
value = { path = "../value" }
6 changes: 3 additions & 3 deletions nexus/value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ edition = "2021"

[dependencies]
base64 = "0.21"
rust_decimal = { version = "1.30.0", features = [ "tokio-pg" ] }
bytes = "1.1"
chrono.workspace = true
rust_decimal = { version = "1.30.0", features = [ "tokio-pg" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
postgres-inet = "0.19.0"
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
pgwire.workspace = true
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
postgres-inet = "0.19.0"
postgres-types = { version = "0.2.5", features = ["array-impls"] }
uuid = { version = "1.0", features = ["serde", "v4"] }
Loading

0 comments on commit ba6feaa

Please sign in to comment.