-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) 路 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (41 loc) 路 1.05 KB
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
[package]
name = "space-invaders-arcade-emulator"
version = "0.1.2"
edition = "2021"
license = "MIT"
authors = ["Quentin MOREL (Im-Rises)"]
description = "Space Invaders Arcade Emulator"
repository = "https:://github.com/Im-Rises/space-invaders-arcade-emulator"
documentation = "https:://github.com/Im-Rises/space-invaders-arcade-emulator"
readme = "README.md"
keywords = ["space-invaders", "arcade", "emulator", "webgl", "rust", "wasm"]
categories = ["emulators", "games", "space-invaders"]
[lib]
name = "space_invaders_arcade_emulator_webgl"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
js-sys = "0.3.61"
wasm-bindgen = "0.2.84"
wasm-bindgen-futures = "0.4.34"
image = "0.24.6"
[dependencies.web-sys]
version = "0.3.61"
features = [
'Document',
'HtmlCanvasElement',
'WebGlBuffer',
'WebGlVertexArrayObject',
'WebGl2RenderingContext',
'WebGlProgram',
'WebGlShader',
'Window',
'WebGlTexture',
'console',
'HtmlAudioElement',
'Blob',
'BlobPropertyBag',
'Url',
'KeyboardEvent',
'WebGlUniformLocation'
]