webasm-circle-table/Cargo.toml

24 lines
352 B
TOML
Raw Normal View History

2022-01-14 22:34:58 +01:00
[package]
name = "circle_canvas"
version = "0.1.0"
authors = ["Histausse"]
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
js-sys = "0.3.55"
wasm-bindgen = "0.2.78"
2022-02-13 00:35:27 +01:00
num-complex = "0.4.0"
2022-01-14 22:34:58 +01:00
[dependencies.web-sys]
version = "0.3.4"
features = [
'CanvasRenderingContext2d',
'Document',
'Element',
'HtmlCanvasElement',
'Window',
]