-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (58 loc) · 1.43 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (58 loc) · 1.43 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "kalast"
version = "0.1.0"
description = "TPM for binary asteroids"
authors = ["Grégoire Henry <gregoireh@pm.me>"]
repository = "https://github.com/GregoireHENRY/kalast-priv"
license = "MIT OR Apache-2.0"
edition = "2024"
# keywords = []
# categories = []
[lib]
name = "kalast"
crate-type = ["lib", "cdylib"]
[features]
default = []
use_f64 = ["tobj/use_f64"]
[dependencies]
kalast_macros = { path = "macros", version = "0.1" }
# Generic
zerocopy = "0.8.47"
anyhow = "1.0.102"
snafu = "0.9"
serde = "1.0"
env_logger = "0.11.9"
confique = { version = "0.2.0", features = ["toml", "yaml", "json5"] }
lazy_static = "1.5"
once_cell = "1.21.4"
itertools = "0.14"
paste = "1.0"
crossbeam = "0.8"
# Albegra
glam = { version = "0.32.1", features = ["serde", "bytemuck"] }
ndarray = "0.17.2"
# Mesh
# tobj = { version = "4.0", features = ["use_f64"] }
tobj = { version = "4.0" }
# Python
pyo3 = { version = "0.28", features = [
"experimental-inspect",
"abi3-py314",
"multiple-pymethods"
] }
numpy = { version = "0.28" }
# Window/GPU
bytemuck = { version = "1.25", features = ["derive"] }
memoffset = "0.9"
winit = { version = "0.30.13", features = ["android-native-activity"] }
wgpu = { version = "29.0", features = ["serde"] }
wgpu_text = "29.0"
pollster = "0.4"
image = { version = "0.25.10", default-features = false, features = [
"png",
"jpeg",
"hdr",
] }
[dev-dependencies]
rstest = "0.26.1"
serial_test = "3.4.0"