Skip to content

Commit 335d99e

Browse files
committed
chore: tune workspace dependencies
Signed-off-by: Ning Sun <[email protected]>
1 parent 85038a7 commit 335d99e

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ documentation = "https://docs.rs/crate/datafusion-postgres/"
1515

1616
[workspace.dependencies]
1717
arrow = "55"
18+
bytes = "1.10.1"
19+
chrono = { version = "0.4", features = ["std"] }
1820
datafusion = { version = "47", default-features = false }
1921
futures = "0.3"
2022
pgwire = "0.30.2"
2123
postgres-types = "0.2"
24+
rust_decimal = { version = "1.37", features = ["db-postgres"] }
2225
tokio = { version = "1", default-features = false }
2326

2427
[profile.release]

arrow-pg/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "arrow-pg"
33
description = "Arrow data mapping and encoding/decoding for Postgres"
4-
version = "0.1.0"
4+
version = "0.0.1"
55
edition.workspace = true
66
license.workspace = true
77
authors.workspace = true
@@ -13,9 +13,9 @@ readme = "../README.md"
1313

1414
[dependencies]
1515
arrow.workspace = true
16-
bytes = "1"
17-
chrono = { version = "0.4", features = ["std"] }
16+
bytes.workspace = true
17+
chrono.workspace = true
1818
futures.workspace = true
1919
pgwire.workspace = true
2020
postgres-types.workspace = true
21-
rust_decimal = { version = "1.37", features = ["db-postgres"] }
21+
rust_decimal.workspace = true

datafusion-postgres/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ documentation.workspace = true
1212
readme = "../README.md"
1313

1414
[dependencies]
15-
arrow-pg = { path = "../arrow-pg", version = "0.1" }
15+
arrow-pg = { path = "../arrow-pg", version = "0.0.1" }
16+
bytes.workspace = true
1617
async-trait = "0.1"
17-
bytes = "1.10.1"
18-
chrono = { version = "0.4", features = ["std"] }
19-
datafusion = { workspace = true }
18+
chrono.workspace = true
19+
datafusion.workspace = true
2020
futures.workspace = true
2121
getset = "0.1"
2222
log = "0.4"
23-
pgwire = { workspace = true }
23+
pgwire.workspace = true
2424
postgres-types.workspace = true
25-
rust_decimal = { version = "1.37", features = ["db-postgres"] }
25+
rust_decimal.workspace = true
2626
tokio = { version = "1.45", features = ["sync", "net"] }

0 commit comments

Comments
 (0)