diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-22 19:29:11 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-22 19:29:11 +0200 |
commit | 54c0fd70f82eb1a6814872c78bc22380f438c9d1 (patch) | |
tree | 7b0b67b52daa7ce18432c7b83caa862234a3255c /Cargo.lock | |
parent | 30394c16ccdcdb145352e245a7a8893cef28e82d (diff) |
feat(engine): add translating & scaling objects
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -76,6 +76,16 @@ dependencies = [ ] [[package]] +name = "cstr" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8aa998c33a6d3271e3678950a22134cd7dd27cef86dee1b611b5b14207d1d90b" +dependencies = [ + "proc-macro2", + "quote", +] + +[[package]] name = "either" version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -86,6 +96,7 @@ name = "engine" version = "0.1.0" dependencies = [ "bitflags", + "cstr", "gl", "glfw", "thiserror", |