-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 932 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 932 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
[package]
name = "launcher"
version = "1.0.4"
edition = "2024"
description = "RLBot5 Launcher"
license-file = "LICENSE"
repository = "https://github.com/rlbot/launcher"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
strip = true
opt-level = "z"
[dependencies]
clap = { version = "4.4.2", features = ["derive"] }
console = "0.15.7"
directories = "5.0.1"
self-replace = "1.3.6"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.108"
tracing = "0.1.40"
tracing-subscriber = "0.3.17"
zip = { version = "0.6.6", default-features = false, features = ["deflate"] }
yansi = "1.0.1"
ureq = { version = "3.0.11", default-features = false, features = ["rustls"] }
xz = "0.1.0"
tar = "0.4.43"
anyhow = "1.0.93"
indicatif = "0.17.8"
sha256 = "1.6.0"
[build-dependencies]
embed-resource = "2.4.0"
static_vcruntime = "2.0.0"