-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (71 loc) · 1.56 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
67
68
69
70
71
72
73
74
75
76
[package]
name = "yew-render"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
[package.metadata.wasm-pack.profile.release]
wasm-opt = ['-O4']
[dependencies]
wasm-bindgen-futures = "0.4.37"
yew = { version = "0.21.0", features = ["csr"] }
js-sys = "0.3"
wasm-bindgen = "0.2.87"
[dependencies.web-sys]
version = "0.3.64"
features = [
'Document',
'Element',
'Window',
'Navigator',
'GpuCanvasContext',
'GpuCanvasConfiguration',
'Gpu',
'GpuTextureFormat',
'GpuAdapter',
'GpuRequestAdapterOptions',
'GpuPowerPreference',
'GpuAdapterInfo',
'GpuDevice',
'GpuDeviceDescriptor',
'GpuSupportedFeatures',
'GpuBuffer',
'GpuBufferDescriptor',
'GpuShaderModule',
'GpuShaderModuleDescriptor',
'GpuVertexState',
'GpuVertexFormat',
'GpuVertexAttribute',
'GpuVertexBufferLayout',
'GpuVertexStepMode',
'GpuTextureFormat',
'GpuColorTargetState',
'GpuFragmentState',
'GpuAutoLayoutMode',
'GpuPrimitiveTopology',
'GpuPrimitiveState',
'GpuRenderPipelineDescriptor',
'GpuRenderPipeline',
'GpuTexture',
'GpuTextureView',
'GpuRenderPassColorAttachment',
'GpuLoadOp',
'GpuStoreOp',
'GpuColorDict',
'GpuRenderPassDescriptor',
'GpuCommandEncoder',
'GpuCommandBuffer',
'GpuRenderPassEncoder',
'GpuQueue',
'HtmlInputElement',
'HtmlSelectElement',
'HtmlCanvasElement',
'WebGlBuffer',
'WebGlVertexArrayObject',
'WebGl2RenderingContext',
'WebGlProgram',
'WebGlShader',
]