2024-01-22 12:08:01 +01:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_canvas"
|
2024-08-22 13:44:53 -04:00
|
|
|
version = "0.35.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
|
2024-08-29 16:58:55 +09:00
|
|
|
deno_terminal.workspace = true
|
2024-01-22 12:08:01 +01:00
|
|
|
deno_webgpu.workspace = true
|
2024-08-21 12:30:20 +09:00
|
|
|
image = { version = "0.25.2", default-features = false, features = ["png", "jpeg", "bmp", "ico", "webp", "gif"] }
|
2024-08-29 16:58:55 +09:00
|
|
|
num-traits = { version = "0.2.19" }
|
2024-01-22 12:08:01 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|