-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (40 loc) · 986 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
41
42
[package]
name = "jpksj-to-sql"
version = "0.1.0"
edition = "2021"
license = "MIT"
[dependencies]
anyhow = "1.0"
async-channel = "2.3.1"
bytesize = "1.3.2"
calamine = "0.26"
clap = { version = "4.5", features = ["derive"] }
derive_builder = "0.20.2"
encoding_rs = "0.8"
futures-util = "0.3.31"
geo-types = "0.7"
indicatif = { version = "0.17.11", features = ["tokio"] }
ndarray = { version = "0.16", features = ["serde"] }
num_cpus = "1"
once_cell = "1.20.3"
regex = "1"
reqwest = { version = "0.12", features = ["stream"] }
scraper = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7", features = ["with-geo-types-0_7", "with-serde_json-1"] }
url = { version = "2", features = ["serde"] }
[dependencies.zip]
version = "2.2"
default-features = false
features = [
"aes-crypto",
# "bzip2",
"deflate64",
"deflate",
"lzma",
"time",
# "zstd",
# "xz",
]