Skip to content

Commit 74233dd

Browse files
committed
Refactor and encode struct types
1 parent e005a79 commit 74233dd

File tree

9 files changed

+990
-645
lines changed

9 files changed

+990
-645
lines changed

Cargo.lock

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ members = ["datafusion-postgres", "datafusion-postgres-cli"]
44

55
[workspace.dependencies]
66
pgwire = "0.28"
7-
postgres-types = "0.2"
87
datafusion = { version = "46", default-features = false }
98
tokio = { version = "1", default-features = false }
109

datafusion-postgres/Cargo.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ readme = "../README.md"
1616
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1717

1818
[dependencies]
19-
pgwire = { workspace = true }
20-
postgres-types = { workspace = true }
21-
datafusion = { workspace = true }
22-
futures = "0.3"
2319
async-trait = "0.1"
20+
bytes = "1.10.1"
2421
chrono = { version = "0.4", features = ["std"] }
22+
datafusion = { workspace = true }
23+
futures = "0.3"
24+
pgwire = { workspace = true }
25+
postgres-types = "0.2"
2526
rust_decimal = { version = "1.37", features = ["db-postgres"] }

0 commit comments

Comments
 (0)