-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 877 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
[package]
name = "covid19db"
version = "2.0.9"
authors = ["John Goerzen <jgoerzen@complete.org>"]
edition = "2018"
license = "GPL-3.0+"
description = "Utility for building and accessing COVID-19 datasets"
homepage = "https://github.com/jgoerzen/covid19db"
repository = "https://github.com/jgoerzen/covid19db/"
readme = "README.md"
keywords = ["covid19", "covid-19", "database", "coronavirus"]
categories = ["command-line-utilities", "database", "science"]
[[bin]]
name = "covid19db-loader"
path = "src/main.rs"
[lib]
[dependencies]
csv = "1.1"
serde = { version = "1", features = ["derive"] }
chrono = "0.4"
julianday = "0.2"
sqlx = { version = "0.3", default-features = false, features = ["runtime-tokio", "macros", "sqlite", "chrono"] }
tokio = { version = "0.2", features = ["macros"] }
reqwest = { version = "0.10", features = ["socks"] }
tempfile = "3.1"
zstd = "0.6"