-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 817 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 817 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 = "extension-downloader"
edition = "2021"
license = "Apache-2.0"
authors = ["Michael Adler <therisen06@gmail.com>"]
[dependencies]
reqwest = { version = "0.13", default-features = false, features = ["native-tls", "charset", "http2", "system-proxy", "json"] }
reqwest-middleware = "0.5"
reqwest-retry = "0.9"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
toml = "1.0.0"
dirs = "6.0"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zip = { version = "8.0", default-features = false, features = ["deflate"] }
serde_json = "1.0.140"
sha2 = "0.11.0"
walkdir = "2"
hex = "0.4.3"
[dev-dependencies]
mockito = "=1.7.2"
temp-dir = "=0.2.0"
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.56"