-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 772 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (28 loc) · 772 Bytes
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
[package]
name = "bresenham-lighting-engine"
version = "0.2.7"
edition = "2021"
description = "A CPU-based 2D lighting engine using Bresenham's line algorithm with fast native collision detection"
license = "ISC"
authors = ["Tim <tim@example.com>"]
keywords = ["lighting", "game-engine", "webassembly", "bresenham", "2d"]
categories = ["game-engines", "graphics", "wasm"]
[package.metadata.wasm-pack.profile.dev.wasm-bindgen]
dwarf-debug-info = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2"
num-traits = "0.2"
once_cell = "1.19.0"
console_error_panic_hook = "0.1.7"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
]
js-sys = "0.3.69"
[dev-dependencies]
wasm-bindgen-test = "0.3.42"
image = "0.24"
imageproc = "0.23"