0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-09 21:57:40 -04:00
deno/ext/canvas/Cargo.toml

23 lines
633 B
TOML
Raw Normal View History

2024-01-22 12:08:01 +01:00
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_canvas"
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"] }