aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c0df4184a915f6f0a201595d3efc222f334494e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "polyring"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE"

[lib]
# cdylib for wasm, rlib for integration tests
crate-type = ["cdylib", "rlib"]

[dependencies]
console_log = "1.0"
log = "0.4"
wasm-bindgen = "0.2"

[dependencies.fastrand]
features = ["js"]
version = "2.3"

[dependencies.web-sys]
features = ["CanvasRenderingContext2d", "Document", "DocumentTimeline",
            "Element", "Event", "HtmlCanvasElement", "HtmlElement", "HtmlInputElement",
            "Node", "Performance", "Window"]
version = "0.3"