-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 723 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "time-manager"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.66", features = ["backtrace"] }
chrono = "0.4.23"
clap = { version = "4.0.26", features = ["derive"] }
derive-getters = "0.2.0"
open = "3.2.0"
reqwest = { version = "0.11.13", features = ["json"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.88"
stdext = "0.3.1"
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.22.0", features = ["rt-multi-thread", "macros"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
tracing-test = "0.2.3"
typed-builder = "0.11.0"