-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 966 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
resolver = "2"
members = ["datafusion-postgres", "datafusion-postgres-cli", "arrow-pg", "datafusion-pg-catalog"]
[workspace.package]
edition = "2024"
license = "Apache-2.0"
rust-version = "1.89"
authors = ["Ning Sun <n@sunng.info>"]
keywords = ["database", "postgresql", "datafusion"]
homepage = "https://github.com/datafusion-contrib/datafusion-postgres/"
repository = "https://github.com/datafusion-contrib/datafusion-postgres/"
documentation = "https://docs.rs/crate/datafusion-postgres/"
[workspace.dependencies]
arrow = "58"
arrow-schema = "58"
bytes = "1.11.1"
chrono = { version = "0.4", features = ["std"] }
datafusion = { version = "53" }
futures = "0.3"
pgwire = { version = "0.39", default-features = false }
postgres-types = "0.2"
rust_decimal = { version = "1.41", features = ["db-postgres"] }
tokio = { version = "1", default-features = false }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"