-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
40 lines (35 loc) · 980 Bytes
/
Cargo.toml
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
33
34
35
36
37
38
39
40
[package]
name = "pgpq"
version = "0.9.0"
edition = "2021"
description = "Encode Apache Arrow `RecordBatch`es to Postgres' native binary format"
license = "MIT"
readme = "README.md"
exclude = ["/tests"]
homepage = "https://github.com/adriangb/pgpq"
repository = "https://github.com/adriangb/pgpq"
documentation = "https://github.com/adriangb/pgpq/blob/workspaces/core/README.md"
authors = ["Adrian Garcia Badaracco <[email protected]>"]
[dependencies]
bytes = "^1.4.0"
arrow-schema = ">=46.0.0"
enum_dispatch = "0.3.11"
anyhow = "1.0.70"
thiserror = "1.0.40"
[dependencies.arrow-array]
version = ">=46.0.0"
default-features = false
[dev-dependencies]
rstest = ">=0.16.0"
parquet = ">=46.0.0"
criterion = ">=0.4.0"
arrow = { version = ">=32.0.0", features = ["ipc"]}
arrow-ipc = ">=46.0.0"
postgres-types = {version = ">=0.2.4", features = ["with-chrono-0_4"]}
ureq = "2.6.2"
[[bench]]
name = "yellow_cab_dataset"
harness = false
[[bench]]
name = "experiments"
harness = false