mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-10 12:41:30 +11:00
remove unnecessary deps
This commit is contained in:
parent
c6b319aca0
commit
e5081b51e4
7
Cargo.lock
generated
7
Cargo.lock
generated
|
@ -1054,16 +1054,10 @@ name = "piet-wgsl"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
"console_error_panic_hook",
|
|
||||||
"console_log",
|
|
||||||
"futures-intrusive",
|
"futures-intrusive",
|
||||||
"js-sys",
|
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"piet-scene",
|
"piet-scene",
|
||||||
"raw-window-handle 0.5.0",
|
"raw-window-handle 0.5.0",
|
||||||
"wasm-bindgen",
|
|
||||||
"wasm-bindgen-futures",
|
|
||||||
"web-sys",
|
|
||||||
"wgpu",
|
"wgpu",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -2030,7 +2024,6 @@ dependencies = [
|
||||||
"piet-wgsl",
|
"piet-wgsl",
|
||||||
"pollster",
|
"pollster",
|
||||||
"roxmltree",
|
"roxmltree",
|
||||||
"wasm-bindgen",
|
|
||||||
"wasm-bindgen-futures",
|
"wasm-bindgen-futures",
|
||||||
"web-sys",
|
"web-sys",
|
||||||
"wgpu",
|
"wgpu",
|
||||||
|
|
|
@ -7,144 +7,8 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wgpu = "0.14"
|
wgpu = "0.14"
|
||||||
wasm-bindgen = "0.2"
|
|
||||||
raw-window-handle = "0.5"
|
raw-window-handle = "0.5"
|
||||||
futures-intrusive = "0.5.0"
|
futures-intrusive = "0.5.0"
|
||||||
parking_lot = "0.12"
|
parking_lot = "0.12"
|
||||||
bytemuck = { version = "1.12.1", features = ["derive"] }
|
bytemuck = { version = "1.12.1", features = ["derive"] }
|
||||||
piet-scene = { path = "../piet-scene" }
|
piet-scene = { path = "../piet-scene" }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
||||||
console_error_panic_hook = "0.1.7"
|
|
||||||
console_log = "0.2"
|
|
||||||
wasm-bindgen-futures = "0.4.33"
|
|
||||||
js-sys = "0.3.60"
|
|
||||||
web-sys = { version = "0.3.60", features = [
|
|
||||||
"Document",
|
|
||||||
"Navigator",
|
|
||||||
"Node",
|
|
||||||
"NodeList",
|
|
||||||
"Gpu",
|
|
||||||
"GpuAdapter",
|
|
||||||
"GpuAddressMode",
|
|
||||||
"GpuAutoLayoutMode",
|
|
||||||
"GpuBindGroup",
|
|
||||||
"GpuBindGroupDescriptor",
|
|
||||||
"GpuBindGroupEntry",
|
|
||||||
"GpuBindGroupLayout",
|
|
||||||
"GpuBindGroupLayoutDescriptor",
|
|
||||||
"GpuBindGroupLayoutEntry",
|
|
||||||
"GpuBlendComponent",
|
|
||||||
"GpuBlendFactor",
|
|
||||||
"GpuBlendOperation",
|
|
||||||
"GpuBlendState",
|
|
||||||
"GpuBuffer",
|
|
||||||
"GpuBufferBinding",
|
|
||||||
"GpuBufferBindingLayout",
|
|
||||||
"GpuBufferBindingType",
|
|
||||||
"GpuBufferDescriptor",
|
|
||||||
"GpuCanvasAlphaMode",
|
|
||||||
"GpuCanvasContext",
|
|
||||||
"GpuCanvasConfiguration",
|
|
||||||
"GpuColorDict",
|
|
||||||
"GpuColorTargetState",
|
|
||||||
"GpuCommandBuffer",
|
|
||||||
"GpuCommandBufferDescriptor",
|
|
||||||
"GpuCommandEncoder",
|
|
||||||
"GpuCommandEncoderDescriptor",
|
|
||||||
"GpuCompareFunction",
|
|
||||||
"GpuCompilationInfo",
|
|
||||||
"GpuCompilationMessage",
|
|
||||||
"GpuCompilationMessageType",
|
|
||||||
"GpuComputePassDescriptor",
|
|
||||||
"GpuComputePassEncoder",
|
|
||||||
"GpuComputePipeline",
|
|
||||||
"GpuComputePipelineDescriptor",
|
|
||||||
"GpuCullMode",
|
|
||||||
"GpuDepthStencilState",
|
|
||||||
"GpuDevice",
|
|
||||||
"GpuDeviceDescriptor",
|
|
||||||
"GpuDeviceLostInfo",
|
|
||||||
"GpuDeviceLostReason",
|
|
||||||
"GpuError",
|
|
||||||
"GpuErrorFilter",
|
|
||||||
"GpuExtent3dDict",
|
|
||||||
"GpuFeatureName",
|
|
||||||
"GpuFilterMode",
|
|
||||||
"GpuFragmentState",
|
|
||||||
"GpuFrontFace",
|
|
||||||
"GpuImageCopyBuffer",
|
|
||||||
"GpuImageCopyExternalImage",
|
|
||||||
"GpuImageCopyTexture",
|
|
||||||
"GpuImageCopyTextureTagged",
|
|
||||||
"GpuImageDataLayout",
|
|
||||||
"GpuIndexFormat",
|
|
||||||
"GpuLoadOp",
|
|
||||||
"gpu_map_mode",
|
|
||||||
"GpuMipmapFilterMode",
|
|
||||||
"GpuMultisampleState",
|
|
||||||
"GpuObjectDescriptorBase",
|
|
||||||
"GpuOrigin2dDict",
|
|
||||||
"GpuOrigin3dDict",
|
|
||||||
"GpuOutOfMemoryError",
|
|
||||||
"GpuPipelineDescriptorBase",
|
|
||||||
"GpuPipelineLayout",
|
|
||||||
"GpuPipelineLayoutDescriptor",
|
|
||||||
"GpuPowerPreference",
|
|
||||||
"GpuPrimitiveState",
|
|
||||||
"GpuPrimitiveTopology",
|
|
||||||
"GpuProgrammableStage",
|
|
||||||
"GpuQuerySet",
|
|
||||||
"GpuQuerySetDescriptor",
|
|
||||||
"GpuQueryType",
|
|
||||||
"GpuQueue",
|
|
||||||
"GpuRenderBundle",
|
|
||||||
"GpuRenderBundleDescriptor",
|
|
||||||
"GpuRenderBundleEncoder",
|
|
||||||
"GpuRenderBundleEncoderDescriptor",
|
|
||||||
"GpuRenderPassColorAttachment",
|
|
||||||
"GpuRenderPassDepthStencilAttachment",
|
|
||||||
"GpuRenderPassDescriptor",
|
|
||||||
"GpuRenderPassEncoder",
|
|
||||||
"GpuRenderPipeline",
|
|
||||||
"GpuRenderPipelineDescriptor",
|
|
||||||
"GpuRequestAdapterOptions",
|
|
||||||
"GpuSampler",
|
|
||||||
"GpuSamplerBindingLayout",
|
|
||||||
"GpuSamplerBindingType",
|
|
||||||
"GpuSamplerDescriptor",
|
|
||||||
"GpuShaderModule",
|
|
||||||
"GpuShaderModuleDescriptor",
|
|
||||||
"GpuStencilFaceState",
|
|
||||||
"GpuStencilOperation",
|
|
||||||
"GpuStorageTextureAccess",
|
|
||||||
"GpuStorageTextureBindingLayout",
|
|
||||||
"GpuStoreOp",
|
|
||||||
"GpuSupportedFeatures",
|
|
||||||
"GpuSupportedLimits",
|
|
||||||
"GpuTexture",
|
|
||||||
"GpuTextureAspect",
|
|
||||||
"GpuTextureBindingLayout",
|
|
||||||
"GpuTextureDescriptor",
|
|
||||||
"GpuTextureDimension",
|
|
||||||
"GpuTextureFormat",
|
|
||||||
"GpuTextureSampleType",
|
|
||||||
"GpuTextureView",
|
|
||||||
"GpuTextureViewDescriptor",
|
|
||||||
"GpuTextureViewDimension",
|
|
||||||
"GpuUncapturedErrorEvent",
|
|
||||||
"GpuUncapturedErrorEventInit",
|
|
||||||
"GpuValidationError",
|
|
||||||
"GpuVertexAttribute",
|
|
||||||
"GpuVertexBufferLayout",
|
|
||||||
"GpuVertexFormat",
|
|
||||||
"GpuVertexState",
|
|
||||||
"GpuVertexStepMode",
|
|
||||||
"HtmlCanvasElement",
|
|
||||||
"OffscreenCanvas",
|
|
||||||
"ImageBitmap",
|
|
||||||
"ImageBitmapRenderingContext",
|
|
||||||
"Window",
|
|
||||||
"WorkerGlobalScope",
|
|
||||||
"WorkerNavigator"
|
|
||||||
] }
|
|
||||||
|
|
|
@ -11,7 +11,6 @@ wgpu = "0.14"
|
||||||
piet-wgsl = { path = "../../../piet-wgsl" }
|
piet-wgsl = { path = "../../../piet-wgsl" }
|
||||||
piet-scene = { path = "../../../piet-scene" }
|
piet-scene = { path = "../../../piet-scene" }
|
||||||
winit = "0.27.5"
|
winit = "0.27.5"
|
||||||
wasm-bindgen = "0.2"
|
|
||||||
pollster = "0.2.5"
|
pollster = "0.2.5"
|
||||||
# for picosvg
|
# for picosvg
|
||||||
roxmltree = "0.13"
|
roxmltree = "0.13"
|
||||||
|
|
Loading…
Reference in a new issue