14 lines
309 B
TOML
14 lines
309 B
TOML
[package]
|
|
name = "editor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytemuck = { version = "1.14.0", features = ["derive"] }
|
|
csg = { path = "../csg" }
|
|
log = "0.4.20"
|
|
wgpu = "0.17.0"
|
|
winit = "0.28.6"
|