-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 878 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 878 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
30
31
32
[package]
edition = "2024"
name = "openproject-toggl-import"
version = "0.1.0"
[dependencies]
anyhow = "1.0.100"
base64 = "0.22"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.54", features = ["derive"] }
dialoguer = { version = "0.12.0", default-features = false }
regex = "1.12.2"
reqwest = { version = "0.13.1", default-features = false, features = [
"json",
"rustls",
] }
secrecy = "0.10.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.49.0", features = ["full"] }
toml = "0.9.10"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "std"] }
thiserror = "2.0.17"
[dev-dependencies]
test-log = { version = "0.2.19", default-features = false, features = [
"trace",
] }
tokio = { version = "*", features = ["full"] }
tracing-subscriber = "0.3.22"