-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (47 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
63 lines (47 loc) · 1.19 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "cortex-update"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Auto-update system for Cortex CLI"
[lib]
name = "cortex_update"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
# Internal
cortex-engine = { workspace = true }
# HTTP
reqwest = { workspace = true, features = ["json", "stream"] }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Async
tokio = { workspace = true, features = ["fs", "process", "io-util"] }
futures = { workspace = true }
# Date/time
chrono = { workspace = true }
# Hashing
sha2 = { workspace = true }
hex = { workspace = true }
# Compression
flate2 = "1.0"
zip = "2.2"
tar = "0.4"
# Self-replacement
self-replace = "1.5"
# File system
dirs = { workspace = true }
tempfile = { workspace = true }
# Error handling
thiserror = { workspace = true }
# Logging
tracing = { workspace = true }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
[dev-dependencies]
tokio-test = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }