diff options
| author | LLLL Colonq <llll@colonq> | 2026-04-30 22:16:17 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-04-30 22:16:17 -0400 |
| commit | d9a2dbf1d939423eeb100aa3910406f80d0a781f (patch) | |
| tree | 6b60a4c68c3a85a1ab07adc497908e3ec9878c48 /Cargo.toml | |
| parent | f171d500036e4d08244d02308ba3f62afdd87162 (diff) | |
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -24,27 +24,30 @@ opt-level = 2 [workspace.dependencies] # teleia = { git = "https://github.com/lcolonq/teleia" } # engine teleia = { path = "../teleia/crates/teleia" } # engine -glam = "*" # linear algebra -glow = "*" # gl bindings -bitflags = "*" # C-style bitwise flags +glfw = { git = "https://github.com/lcolonq/glfw-rs", features = ["serde"] } # window management +glam = { version = "0.29.2", features = ["serde"] } # linear algebra +glow = { version = "=0.13.1", features = [] } # gl bindings +bitflags = { version = "2.6.0", features = ["serde"] } # C-style bitwise flags rand = "=0.8.5" # rng -log = "*" # logging -env_logger = "*" # native logging +log = "0.4.21" # logging +env_logger = "0.11.5" # native logging lazy_static = "*" # global constants strum = {version = "*", features = ["derive"]} # utility macros for enums +enum-map = {version = "2.7.3", features = ["serde"]} # enum map lexpr = "*" # s-expression parsing clap = {version = "*", features = ["cargo"]} # cli arg parsing base64 = "0.22.1" # base64 encoding/decoding -polling = "*" # polling sockets +polling = "3.11.0" # polling sockets termion = "*" # terminal escapes device_query = "*" # get pressed keys when unfocused -byteorder = "*" # read little-endian numbers -image = "*" # read and write image files +byteorder = "1.5.0" # read little-endian numbers +image = { version = "0.25.10", default-features = false, features = ["jpeg", "png", "webp"] } # 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 = "=0.2.100" # wasm bindings wasm-bindgen-futures = "*" # interface with async javascript -cfg-if = "*" # less verbose cfg
\ No newline at end of file +cfg-if = "*" # less verbose cfg +libc = "*"
\ No newline at end of file |
