-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
49 lines (45 loc) · 1.04 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
[package]
name = "shticker_book_unwritten"
version = "1.2.1"
authors = ["Dr. Jonathan Helianthicus Doe, IV <[email protected]>"]
edition = "2021"
description = "Minimal CLI launcher for the Toontown Rewritten MMORPG"
repository = """
https://github.com/JonathanHelianthicusDoe/shticker_book_unwritten"""
readme = "README.md"
keywords = ["cli", "launcher", "ttr", "toontown", "rewritten"]
categories = ["games"]
license = "GPL-3.0-or-later"
[dependencies]
bzip2 = "0.4.4"
rpassword = "7.3.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
sha1 = "0.10.6"
[dependencies.clap]
version = "4.5.3"
default-features = false
features = [
"std",
"cargo",
"suggestions",
"help",
"usage",
"error-context",
"wrap_help",
]
[dependencies.reqwest]
version = "0.12.1"
default-features = false
features = ["blocking", "rustls-tls"]
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = "fat"
debug-assertions = false
codegen-units = 1
panic = "abort"
incremental = false
overflow-checks = false
strip = true