-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (39 loc) · 846 Bytes
/
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
[package]
name = "wasmplayer"
license = "GPL-3.0"
version = "0.1.0"
edition = "2021"
authors = ["Andrea Rossoni <andrea dot ros.21 at murena dot io>"]
readme = "README.md"
repository = "https://github.com/andros21/wasmplayer"
homepage = "https://github.com/andros21/wasmplayer"
description = "a simple wasm media player"
keywords = [
"gh-pages",
"media-player",
"music-player",
"wasm",
"wasm-bindgen",
"wasm-pack",
"web",
]
[lib]
crate-type = ["cdylib"]
[dependencies]
wasm-bindgen = "0.2.97"
gloo-events = "0.2.0"
gloo-timers = "0.3.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
[dependencies.web-sys]
version = "0.3.74"
features = [
'Node',
'Window',
'Document',
'HtmlElement',
'HtmlCollection',
'HtmlAudioElement',
'HtmlInputElement',
'CssStyleDeclaration',
]