2025-01-01 04:12:39 +09:00
|
|
|
# Copyright 2018-2025 the Deno authors. MIT license.
|
2024-01-22 12:08:01 +01:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_canvas"
|
2025-01-09 17:38:18 -05:00
|
|
|
version = "0.54.0"
|
2024-01-22 12:08:01 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
repository.workspace = true
|
|
|
|
description = "OffscreenCanvas implementation for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
deno_core.workspace = true
|
2025-01-08 14:52:32 -08:00
|
|
|
deno_error.workspace = true
|
2024-01-22 12:08:01 +01:00
|
|
|
deno_webgpu.workspace = true
|
|
|
|
image = { version = "0.24.7", default-features = false, features = ["png"] }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2024-10-12 10:00:35 -07:00
|
|
|
thiserror.workspace = true
|