aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 50bcb84480e7268e6867ff61c3e1196ef70e3607 (plain)
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 = "para"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Decoder and utility for the Flipnote Studios .ppm animation format."
readme = "README.rst"
homepage = "https://github.com/Usugata/para"
repository = "https://github.com/Usugata/para"
license = "MIT"
keywords = ["ppm", "nintendo-hacking", "flipnote", "flipnotestudio", "nintendo-dsi"]
categories = ["encoding"]
publish = false

# Slower builds, faster executables
[profile.release]
lto = "fat"
codegen-units = 1

[dependencies]
# Constant `HashMap`
lazy_static = "1.4.0"

# Byte manipulation
byteorder = "1.4.3"

# Time
chrono = "0.4.19"

# Image encoding
image = "0.24.1"

# JSON encoding
serde_json = "1.0.79"

# Error handling
human-panic = "1.0.3"