-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (36 loc) · 1.13 KB
/
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
[package]
name = "healthkit-to-sqlite-cli"
version = "0.0.4"
edition = "2021"
authors = ["Justin Shrake"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/jshrake/healthkit-to-sqlite"
repository = "https://github.com/jshrake/healthkit-to-sqlite"
documentation = "https://docs.rs/healthkit-to-sqlite-cli"
description = """
Command-line tool to convert Apple HealthKit data to a SQLite database.
"""
categories = ["science", "database", "visualization"]
autotests = false
exclude = ["/example/*", "/.github/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "healthkit-to-sqlite"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.68"
clap = {version = "4.0.32", features = ["derive", "env"]}
console = "0.15.3"
dialoguer = "0.10.2"
dotenv = "0.15.0"
env_logger = "0.10.0"
indicatif = "0.17.2"
lazy_static = "1.4.0"
log = "0.4.17"
quick-xml = "0.26.0"
serde_json = "1.0.91"
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite", "json", "time"] }
time = {version = "0.3.17" }
tokio = { version = "1", features = ["full"] }
zip = "0.6.3"