aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-02-27 06:53:33 -0800
committerFuwn <[email protected]>2022-02-27 06:53:33 -0800
commit225fc572faa1f7f54c7266d5d6a5c74345dfdaa2 (patch)
treea30dd2959f3e99d15bc6b4c12fac5a32c3b8994a /Cargo.toml
downloadpara-225fc572faa1f7f54c7266d5d6a5c74345dfdaa2.tar.xz
para-225fc572faa1f7f54c7266d5d6a5c74345dfdaa2.zip
feat(para): :star:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml40
1 files changed, 40 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..9067585
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,40 @@
+[package]
+name = "para"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2021"
+description = "An example decoder and utility for 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"
+
+# Generators
+generator = "0.7.0"
+
+# Image encoding
+image = "0.24.1"
+
+# JSON encoding
+serde_json = "1.0.79"
+
+# Error handling
+human-panic = "1.0.3"