-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (57 loc) · 1.3 KB
/
Cargo.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rs_mate_poe"
version = "1.6.8"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
rust-version = "1.81"
description = "WASM port of Screen Mate Poe."
license = "WTFPL"
repository = "https://github.com/Blobfolio/js-mate-poe"
readme = "README.md"
publish = false
[package.metadata.bashman]
name = "RS Mate Poe"
[lib]
crate-type = ["cdylib"]
[build-dependencies]
guff_css = "=0.5.1"
imagesize = "=0.13.0"
[dependencies]
itoa = "=1.0.11"
js-sys = "=0.3.72"
wasm-bindgen = "=0.2.95"
[dependencies.web-sys]
version = "=0.3.72"
features = [
"AddEventListenerOptions",
"Blob",
"BlobPropertyBag",
"CssStyleDeclaration",
"Document",
"DomTokenList",
"Element",
"Event",
"EventTarget",
"HtmlAudioElement",
"HtmlElement",
"HtmlImageElement",
"MouseEvent",
"ShadowRoot",
"ShadowRootInit",
"ShadowRootMode",
"Url",
"VisibilityState",
"Window",
]
[features]
default = []
# The Firefox browser extension handles audio differently, and has no dblclick
# event listener. Note: do not enable this in conjunction with other features!
firefox = ["web-sys/Node"]
# The director mode exposes additional browserland methods to make it easier to
# preview and debug animations, like Poe.play and Poe.speed.
director = ["web-sys/console"]
[profile.release]
lto = true
codegen-units = 1
strip = true