blob: 504845ae531542e4d52d5f89f358e0266258830d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
[package]
name = "kharcho"
version = "0.1.0"
authors = ["LLLL Colonq <llll@colonq.computer>"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "kharcho"
path = "src/main.rs"
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[profile.dev]
debug = false
[profile.dev.package."*"]
opt-level = 2
[dependencies]
teleia = { git = "https://github.com/lcolonq/teleia" } # engine
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
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "=0.2.100" # wasm bindings
|