-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
42 lines (35 loc) · 1.05 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
[package]
name = "steamlocate"
version = "2.0.0"
authors = [
"William Venner <william@venner.io>",
"Cosmic <CosmicHorrorDev@pm.me>",
]
edition = "2021"
repository = "https://github.com/WilliamVenner/steamlocate-rs"
license = "MIT"
description = "Crate for locating Steam game installation directories (and Steam itself!)"
keywords = ["steam", "vdf", "appmanifest", "directory", "steamapps"]
categories = ["config", "filesystem"]
rust-version = "1.70.0"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
crc = "3.0"
keyvalues-parser = "0.2"
keyvalues-serde = "0.2"
serde = { version = "1.0.0", features = ["derive"] }
# Platform-specific dependencies used for locating the steam dir
[target."cfg(target_os=\"windows\")".dependencies]
winreg = "0.52.0"
[target."cfg(any(target_os=\"macos\", target_os=\"linux\"))".dependencies]
home = "0.5.9"
[dev-dependencies]
insta = { version = "1.34.0", features = ["ron"] }
wasm-bindgen-test = "0.3.39"
[[example]]
name = "appmanifest"
[[example]]
name = "overview"
[[example]]
name = "shortcuts"