-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 899 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 899 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
31
32
33
34
35
36
37
38
[package]
name = "ge-man"
version = "0.1.2"
edition = "2021"
keywords = ["GloriousEgroll", "Steam", "Lutris", "GE-Proton", "Wine-GE"]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A manager for GE Proton and Wine GE versions."
repository = "https://github.com/Compile-Time/GE-Man"
include = [
"**/*.rs",
"Cargo.toml"
]
[[bin]]
name = "geman"
path = "src/main.rs"
[dependencies]
ge-man-lib = { path = "../ge-man-lib", version = "0.1.1" }
clap = { version = "3.2.5", features = ["cargo"] }
lazy_static = "1.4.0"
indicatif = "0.16.2"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
itertools = "0.10.3"
anyhow = "1.0.57"
[dev-dependencies]
test-case = "2.1.0"
httpmock = "0.6.6"
assert_fs = "1.0.7"
predicates = "2.1.1"
mockall = "0.11.1"
[features]
vendored-openssl = ["ge-man-lib/vendored-openssl"]