diff options
Diffstat (limited to '2026/framing/Cargo.toml')
| -rw-r--r-- | 2026/framing/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/2026/framing/Cargo.toml b/2026/framing/Cargo.toml index b673692..cf605fa 100644 --- a/2026/framing/Cargo.toml +++ b/2026/framing/Cargo.toml @@ -17,12 +17,15 @@ opt-level = 2 [dependencies] # teleia = { git = "https://github.com/lcolonq/teleia" } # engine teleia = { path = "../../../teleia/crates/teleia" } # engine +teleia_macros = { path = "../../../teleia/crates/teleia_macros" } # engine glam = "*" # linear algebra bitflags = "*" # C-style bitwise flags rand = "*" # rng log = "*" # logging lazy_static = "*" # global constants strum = {version = "*", features = ["derive"]} # utility macros for enums +enum-map = {version = "2.7.3", features = ["serde"]} # enum map +serde = { version = "1.0.228", features = ["derive"] } # serialization [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = "=0.2.100" # wasm bindings
\ No newline at end of file |
