-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 809 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
[package]
name = "deadlock-api-ingest"
version = "0.2.9"
description = "Deadlock API Ingest"
repository = "https://github.com/deadlock-api/deadlock-api-ingest"
license = "MIT"
edition = "2024"
[dependencies]
clap = { version = "4.6.0", features = ["derive"] }
ureq = { version = "3.3.0", default-features = false, features = ["json", "rustls"] }
memchr = "2.8.0"
notify = "8.2.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0"
steamlocate = "2.0.1"
dirs = "6.0.0"
walkdir = "2.5.0"
tracing = "0.1.44"
tracing-appender = "0.2.4"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.56.0"
[target.'cfg(target_os = "windows")'.build-dependencies]
winres = "0.1"
[dev-dependencies]
sysinfo = "0.38.4"