aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 5bbf004c1f9e9fe775f3fd8e1a1b625829158973 (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
38
39
40
41
42
43
[package]
name = "para-cli"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2024"
description = "Decoder and utility for the Flipnote Studios .ppm animation format."
readme = "README.md"
homepage = "https://github.com/Usugata/para"
repository = "https://github.com/Usugata/para"
license = "MIT"
keywords = [
  "ppm",
  "nintendo-hacking",
  "flipnote",
  "flipnotestudio",
  "nintendo-dsi",
]
categories = ["encoding"]

[[bin]]
name = "para"
path = "src/main.rs"

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

[dependencies]
# 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 = "2.0.0"