-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
50 lines (47 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "scidataflow"
version = "0.8.11"
edition = "2021"
exclude = ["logo.png", "tests/test_data/**"]
license = "MIT"
authors = ["Vince Buffalo <[email protected]>"]
keywords = ["science", "reproducibility", "bioinformatics", "data"]
categories = ["command-line-utilities", "science"]
repository = "https://github.com/vsbuffalo/scidataflow"
description = "A command-line tool to manage scientific research project data."
documentation = "https://github.com/vsbuffalo/scidataflow/blob/main/README.md"
[lib]
name = "scidataflow"
path = "src/lib.rs"
[[bin]]
name = "sdf"
path = "src/main.rs"
[dependencies]
clap = { version = "4.3.19", features = ["derive", "cargo"] }
colored = "2.0.4"
env_logger = "0.10.0"
log = "0.4.19"
serde = "1.0.180"
serde_yaml = "0.9.25"
serde_derive = "1.0.180"
md5 = "0.7.0"
reqwest = { version = "0.11.18", features = ["json", "stream"] }
tokio = { version = "1.32.0", features = ["full"] }
serde_json = "1.0.104"
anyhow = "1.0.72"
url = "2.4.0"
futures = "0.3.28"
futures-util = "0.3.28"
trauma = "2.2.3"
dirs = "5.0.1"
tempfile = "3.8.0"
rand = "0.8.5"
flate2 = "1.0.27"
lazy_static = "1.4.0"
httpmock = "0.6.8"
indicatif = { version = "0.17.6", features = ["futures"] }
tokio-util = { version = "0.7.8", features = ["codec"] }
csv = "1.2.2"
time = { version = "0.3.28", features = ["formatting", "local-offset"] }
chrono = { version = "0.4.29", default-features = false, features = ["clock"] }
timeago = { version = "0.4.1", default-features = false }