summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-12-17 04:04:45 -0500
committerLLLL Colonq <llll@colonq>2025-12-17 04:04:53 -0500
commitff1fdafbbf5b475941d4b476951cb61466538455 (patch)
tree7364d250ede0bdc11ca94f0ba3f4246d882d8c8b /Cargo.toml
parentd126e305b50c9625b6fd7cf2b51232d9f8db6ab8 (diff)
Update
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml26
1 files changed, 25 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 7569b52..ea6dbb7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,4 +23,28 @@ opt-level = 2
[workspace.dependencies]
# teleia = { git = "https://github.com/lcolonq/teleia" } # engine
-teleia = { path = "../teleia/crates/teleia" } # engine \ No newline at end of file
+teleia = { path = "../teleia/crates/teleia" } # engine
+glam = "*" # linear algebra
+glow = "*" # gl bindings
+bitflags = "*" # C-style bitwise flags
+rand = "=0.8.5" # rng
+log = "*" # logging
+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
+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
+uuid = {version = "*", features = ["v4"]} # generate uuids
+wasm-bindgen = "*" # wasm bindings
+wasm-bindgen-futures = "*" # interface with async javascript
+cfg-if = "*" # less verbose cfg \ No newline at end of file