cxgraph/Cargo.toml

31 lines
738 B
TOML
Raw Normal View History

2023-05-13 04:20:26 +00:00
[package]
2023-05-20 00:34:08 +00:00
name = "cxgraph"
2023-05-13 04:20:26 +00:00
version = "0.1.0"
edition = "2021"
2023-05-20 00:34:08 +00:00
[lib]
crate-type = ["cdylib", "rlib"]
2023-05-13 04:20:26 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-05-20 00:34:08 +00:00
cfg-if = "1"
2023-05-13 04:20:26 +00:00
wgpu = "0.16"
cgmath = "0.18"
encase = { version = "0.6", features = ["cgmath"] }
2023-05-20 00:34:08 +00:00
raw-window-handle = "0.5"
winit = "0.28"
log = "0.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
pollster = "0.3"
env_logger = "0.10"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1"
console_log = "1.0"
wgpu = { version = "0.16", features = ["webgl"]}
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = ["Document", "Window", "Element"]}