diff options
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 |
