-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
68 lines (61 loc) · 1.31 KB
/
Cargo.toml
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
64
65
66
67
68
[package]
name = "libthermite"
version = "0.8.2" # managed by release.sh
edition = "2021"
rust-version = "1.80"
description = "Crate for managing Northstar mods"
license = "MIT"
repository = "https://github.com/AnActualEmerald/thermite"
exclude = [
"commands/",
"*.zip",
"*.tar.gz",
]
[workspace]
members = [
"xtask",
]
[lib]
name = "thermite"
[[example]]
name = "steam"
required-features = [
"steam",
]
[lints.clippy]
unwrap_used = "deny"
[dependencies]
flate2 = { version = "^1.0", optional = true, default-features = false }
json5 = "^0.4"
regex = { default-features = false, features=["unicode-perl"], version = "^1.10" }
serde = { version = "^1.0", features = ["serde_derive"], default-features = false }
serde_json = "^1.0"
steamlocate = { version = "^1", optional = true }
tar = { version = "^0.4", optional = true }
thiserror = "^1.0"
tracing = { default-features = false, version = "^0.1" }
ureq = { version = "^2.6" }
zip = { default-features = false, version = "^2.2", features = [
"deflate",
] }
[features]
default = [
]
steam = [
"steamlocate",
]
proton = [
"tar",
"flate2",
]
all = [
"steam",
"proton",
]
[dev-dependencies]
indicatif = "0.17.3"
mockall = { version = "0.13" }
tracing-subscriber = { version = "0.3.18", features = [
"env-filter",
] }
tracing-test = "0.2.4"