-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (44 loc) · 1.21 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
[package]
name = "lolrofl"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
description = "Library and tool to parse and inspect ROFL replay files generated from League of Legends games."
repository = "https://github.com/Ayowel/lolrofl-rs"
homepage = "https://ayowel.github.io/lolrofl-rs/lolrofl/index.html"
categories = ["command-line-utilities", "parser-implementations"]
keywords = ["league-of-legends", "lol", "rofl"]
exclude = ["/.gitignore", "/ROFLFormat.adoc", "/.github"]
[[bin]]
name = 'lolrofl'
required-features = ["clap", "json", "payload"]
[features]
default = ["payload"]
payload = ["blowfish", "flate2", "base64"]
test = []
[package.metadata.docs.rs]
features = ["json", "test"]
[dependencies]
byteorder = {version = "^1.4.3"}
# Map payload decryption key
[dependencies.base64]
version = "^0.13.0"
optional = true
# Decrypt payloads
[dependencies.blowfish]
version = "^0.9.1"
optional = true
# Dezip payload
[dependencies.flate2]
version = "^1.0.24"
optional = true
### Executables dependencies
# Metadata parser in executables
[dependencies.json]
version = "^0.12.4"
optional = true
# Command-line parser for executables
[dependencies.clap]
version = "^3.1.18"
features = ["derive"]
optional = true