-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (72 loc) · 2.24 KB
/
Cargo.toml
File metadata and controls
73 lines (72 loc) · 2.24 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "firefly_cli"
version = "0.17.1"
rust-version = "1.92.0"
edition = "2024"
authors = ["Firefly Zero team"]
description = "CLI tool for working with Firefly Zero"
homepage = "https://fireflyzero.com/"
repository = "https://github.com/firefly-zero/firefly-cli"
license = "MIT"
keywords = ["gamedev", "firefly-zero", "cli"]
categories = [
"command-line-utilities",
"game-development",
"development-tools",
"compilers",
"wasm",
]
[dependencies]
# Simpler error handling
anyhow = "1.0.101"
# Get current date and time
chrono = { version = "0.4.42", default-features = false, features = ["clock"] }
# Framework for parsing CLI args
clap = { version = "4.6.1", features = ["derive"] }
# Detect message boundaries in serial port output from device
cobs = "0.5.1"
# Generate PNG images (sign chunks)
crc32fast = "1.5.0"
# TUI for the "monitor" command, colored terminal output
crossterm = "0.29.0"
# Find the best place to sotre the VFS
directories = "6.0.0"
# Serialize app config into meta file in the ROM
firefly-types = { version = "0.10.0" }
# Read gz archives (to install emulator).
flate2 = "1.1.9"
# Decode wav files
hound = "3.5.1"
# Parse PNG images
image = { version = "0.25.10", default-features = false, features = ["png"] }
# Generate PNG images (compress frame)
libflate = "2.3.0"
# Parse manuals
markdown = "1.0.0"
# Random device name generation
rand = "0.9.2"
rust-embed = { version = "8.9.0", default-features = false, features = [
"debug-embed",
] }
# REPL
rustyline = "18.0.0"
# Deserialize firefly.toml (required by `toml`)
serde = { version = "1.0.219", features = ["serde_derive", "derive"] }
# Deserialize JSON API responses from the firefly catalog
serde_json = "1.0.149"
# Communicating with running device
serialport = "4.9.0"
# Calculate file checksum
sha2 = "0.10.9"
# Read gz archives (to install emulator).
tar = "0.4.45"
# Deserialize firefly.toml
toml = "1.1.2"
# Download remote files (`url` field in `firefly.toml`)
ureq = "3.3.0"
# Build together post-processed wasm binaries
wasm-encoder = "0.247.0"
# Parse wasm binaries for post-processing (removing custom sections)
wasmparser = "0.247.0"
# Work with zip archives (distribution format for ROMs)
zip = { version = "8.5.1", default-features = false, features = ["zstd"] }