summaryrefslogtreecommitdiff
path: root/crates/renderer/Cargo.toml
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-11-22 17:45:54 -0500
committerLLLL Colonq <llll@colonq>2025-11-22 17:45:54 -0500
commite64264a494d95ae2caa14b453531cc527e26f8ed (patch)
treef3a631c1a08d37e909ebd44450b5868255601de1 /crates/renderer/Cargo.toml
parent2a0a832049459783967c889bf4fca7636bb0f76d (diff)
Animated TCG
Diffstat (limited to 'crates/renderer/Cargo.toml')
-rw-r--r--crates/renderer/Cargo.toml10
1 files changed, 6 insertions, 4 deletions
diff --git a/crates/renderer/Cargo.toml b/crates/renderer/Cargo.toml
index aef49bb..99ef4f7 100644
--- a/crates/renderer/Cargo.toml
+++ b/crates/renderer/Cargo.toml
@@ -9,8 +9,8 @@ name = "newton_renderer"
path = "src/main.rs"
[dependencies]
-teleia = { workspace = true }
-newton_shader = { path = "../shader" }
+teleia = {workspace = true}
+newton_shader = {path = "../shader"}
glam = "*" # linear algebra
glow = "*" # gl bindings
bitflags = "*" # C-style bitwise flags
@@ -20,13 +20,15 @@ env_logger = "*" # native logging
lazy_static = "*" # global constants
strum = {version = "*", features = ["derive"]} # utility macros for enums
lexpr = "*" # s-expression parsing
-clap = { version = "*", features = ["cargo"] } # cli arg parsing
+clap = {version = "*", features = ["cargo"]} # cli arg parsing
base64 = "0.22.1" # base64 encoding/decoding
polling = "*" # polling sockets
termion = "*" # terminal escapes
device_query = "*" # get pressed keys when unfocused
byteorder = "*" # read little-endian numbers
image = "*" # read and write image files
+png = "*" # encode apng
cpal = "*" # record microphone
redis = "*" # database
-web-image-meta = "*" # edit image metadata \ No newline at end of file
+web-image-meta = "*" # edit image metadata
+uuid = {version = "*", features = ["v4"]} # generate uuids \ No newline at end of file