-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (36 loc) · 1.1 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
[package]
name = "canvas_2d"
version = "0.1.0"
edition = "2021"
[dependencies]
cssparser = "0.34.0"
cssparser-color = "0.2.0"
deno_core = "0.326.0"
euclid = "0.22.11"
fontsan = { git = "https://github.com/servo/fontsan.git", rev = "8fbc406506cfd1f8ab60e625d1e926a0e72e1d8a" }
harfbuzz_rs = { git = "https://github.com/harfbuzz/harfbuzz_rs.git", rev = "30f0fec1744bb320ac554f9f62831b1ce1d2985d" }
hashlink = "0.10.0"
image = { version = "0.25.5", default-features = false, features = [
"bmp",
"gif",
"jpeg",
"png",
] }
itertools = "0.13.0"
lyon_geom = "1.0.6"
palette = { version = "0.7.6", default-features = false, features = ["std"] }
png = "0.17.15"
raqote = { git = "https://github.com/0f-0b/raqote.git", rev = "bc86ee8882c17dd37296d4d7dd5c0df460a12812", default-features = false }
strum_macros = "0.26.4"
svgtypes = "0.15.2"
thiserror = "2.0.7"
unicase = "2.8.0"
unicode-bidi = "0.3.18"
[dev-dependencies]
deno_console = "0.183.0"
deno_url = "0.183.0"
deno_web = "0.214.0"
deno_webidl = "0.183.0"
tokio = { version = "1.42.0", features = ["fs", "rt", "macros"] }
[lints.clippy]
undocumented_unsafe_blocks = "warn"