-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 736 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 736 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 = "cohort-tracker"
version = "0.2.0"
edition = "2021"
[dependencies]
tokio = { version = "1.35", features = ["macros", "rt-multi-thread", "process", "io-util"] }
reqwest = { version = "0.13.1", features = ["json", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlite = "0.27"
anyhow = "1.0"
dotenv = "0.15"
clap = { version = "4.4", features = ["derive"] }
toml = "0.8"
openssl = { version = "0.10", features = ["vendored"] }
urlencoding = "2.1"
axum = "0.8"
tower-http = { version = "0.5", features = ["cors", "fs"] }
chrono = "0.4"
async-trait = "0.1"
async-stream = "0.3"
futures-util = "0.3"
self_update = "0.41"
dirs = "5.0"
[dev-dependencies]
tempfile = "3.8"
wiremock = "0.5"