diff options
| author | LLLL Colonq <llll@colonq> | 2026-05-02 16:16:04 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-05-02 16:16:04 -0400 |
| commit | d3bd791297d6aaa7abaf613aafbec99a7bb17823 (patch) | |
| tree | ace9b887fc57681dcbe8a468278cdc74ecff1b2c /Cargo.toml | |
| parent | ea5929c74a4e01bcbc776832b5597fceb5261a31 (diff) | |
Eating soup!
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2,13 +2,13 @@ name = "kharcho" version = "0.1.0" authors = ["LLLL Colonq <llll@colonq.computer>"] -edition = "2021" +edition = "2024" [lib] crate-type = ["cdylib", "rlib"] [[bin]] -name = "kharcho" +name = "kharcho_bin" path = "src/main.rs" [profile.release] @@ -25,13 +25,15 @@ debug = false opt-level = 2 [dependencies] -teleia = { git = "https://github.com/lcolonq/teleia" } # engine +# teleia = { git = "https://github.com/lcolonq/teleia" } # engine +teleia = { path = "../teleia/crates/teleia" } glam = {version = "0.29.2", features = ["serde"]} # linear algebra bitflags = { version = "2.6.0", features = ["serde"] } # C-style bitwise flags rand = { version = "=0.8.5", features = ["small_rng"] } # rng log = "0.4.21" # logging lazy_static = "*" # global constants strum = {version = "0.27.1", features = ["derive"]} # utility macros for enums +rust-ini = "0.21.3" # ini parser [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = "=0.2.100" # wasm bindings
\ No newline at end of file |
