forked from datafusion-contrib/datafusion-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 993 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 993 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]
version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.86.0"
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 = "56"
bytes = "1.10.1"
chrono = { version = "0.4", features = ["std"] }
datafusion = { version = "50", default-features = false }
futures = "0.3"
pgwire = { version = "0.33", default-features = false }
postgres-types = "0.2"
rust_decimal = { version = "1.38", features = ["db-postgres"] }
tokio = { version = "1", default-features = false }
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"