-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (26 loc) · 880 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
[package]
name = "sql2all"
version = "0.1.0"
edition = "2021"
description = "Retrieve the data from the database, then asynchronically store it in all formats."
authors = ["Weijun Huang"]
repository = "https://github.com/Weijun-H/sql2all"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
arrow = "51.0.0"
clap = { version = "4.5.6", features = ["derive"] }
futures = "0.3.30"
futures-util = "0.3.30"
mysql_async = "0.34.1"
parquet = { version = "51.0.0", features = ["async", "arrow"] }
parquet_derive = "51.0.0"
rusqlite = {version = "0.31.0", features = ["column_decltype"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-postgres = "0.7.10"
[dev-dependencies]
rand = "0.8.5"
serde = { version = "1.0.203", features = ["derive"] }
[profile.release]
debug = true