-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 758 Bytes
/
Copy pathCargo.toml
File metadata and controls
42 lines (36 loc) · 758 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
39
40
41
42
[package]
name = "tinywad"
version = "0.1.3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE"
]
homepage = "https://github.com/theobori/tinywad"
description = "A library to manage/compose WAD resources"
repository = "https://github.com/theobori/tinywad"
keywords = [
"lib",
"wad",
"patch",
"doom",
"lumps"
]
categories = [
"multimedia::images",
"multimedia::audio",
"parsing",
"rendering::data-formats"
]
license = "MIT"
readme = "README.md"
[dependencies]
thiserror = "1.0.37"
structopt = "0.3.26"
regex = "1"
image = "0.24.3"
lazy_static = "1.4.0"
linked-hash-map = "0.5.6"