-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (37 loc) · 976 Bytes
/
Cargo.toml
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
38
39
40
41
42
43
44
45
46
[package]
name = "lunar-engine"
version = "0.0.1"
edition = "2021"
[lib]
name="lunar_engine"
path="./src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
webgl = ["wgpu/webgl"]
tracy = ["tracy-client/default"]
[dependencies]
lunar-engine-derive= {path = "./lunar-engine-derive", version="0.1.0"}
bytemuck = { version = "1.14.0", features = ["derive"] }
chrono = "0.4.31"
futures = "0.3.30"
lock_api = "0.4.11"
log = "0.4.20"
parking_lot = "0.12.1"
rand = "0.8.5"
vec_key_value_pair = "0.2.0"
wgpu = { version = "0.20.1"}
winit = { version = "0.30.1" }
lunar-logger= "0.2.0"
lunar-png = "0.1.2"
tracy-client={version = "0.18.0", default-features=false}
[target.'cfg(target_arch="wasm32")'.dependencies]
getrandom = {version = "0.2.15", features = ["js"]}
send_wrapper = "0.6.0"
web-sys = "0.3.64"
wasm-bindgen = "0.2.92"
[workspace]
members = [
"lunar-engine-derive",
]
[profile.release]
debug=true