-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (37 loc) · 886 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
[package]
name = "byte_engine"
version = "0.1.0"
edition = "2021"
license = "MIT"
rust-version = "1.73.0"
[dependencies]
component_derive = { path = "component_derive" }
xcb = { version = "1.2.2", features=['xtest'] }
# ash = { version = "0.37.3", features=['linked'] }
ash = { git = "https://github.com/ash-rs/ash", branch = "master", features=['linked'] }
futures = "0.3.28"
shaderc = "0.8.2"
bitflags = "2.4.0"
renderdoc = "0.11.0"
png = "0.17.10"
json = "0.12.4"
polodb_core = "4.4.0"
intel_tex_2 = "0.2.2"
gltf = "1.3.0"
ureq = "2.7.1"
libdeflater = "1.19.0"
notify-debouncer-full = { version = "0.3.1", default-features = false }
serde_json = "1.0.105"
dual_quaternion = "0.2.0"
maths-rs = "0.2.4"
serde = "1.0.187"
log = "0.4.20"
simple_logger = "4.2.0"
meshopt = "0.1.9"
[profile.dev]
incremental = true
lto="off"
[profile.release]
lto="fat"
panic="abort"
codegen-units = 1