diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-04-18 19:04:46 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-04-18 19:04:46 +0200 |
| commit | 35302d20047c58baa99065a4574eafe1920e7be6 (patch) | |
| tree | b9c7dbf3e15c24cc063da70dbc2fa3d5befa41d4 /Cargo.lock | |
| parent | bce83d330f0efc0f8cdd6fb01d8244cb9f01ac27 (diff) | |
Handle SVG with text
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -547,6 +547,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] +name = "fontdb" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52186a39c335aa6f79fc0bf1c3cf854870b6ad4e50a7bb8a59b4ba1331f478a" +dependencies = [ + "log", + "memmap2", + "ttf-parser 0.17.1", +] + +[[package]] name = "form_urlencoded" version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1597,6 +1608,7 @@ dependencies = [ "comemo", "ecow", "flate2", + "fontdb", "if_chain", "image", "indexmap", @@ -1808,6 +1820,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" [[package]] +name = "unicode-vo" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94" + +[[package]] name = "unicode-width" version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1852,14 +1870,20 @@ dependencies = [ "data-url", "flate2", "float-cmp", + "fontdb", "kurbo", "log", "pico-args", "rctree", "roxmltree", + "rustybuzz", "simplecss", "siphasher", "svgtypes", + "ttf-parser 0.15.2", + "unicode-bidi", + "unicode-script", + "unicode-vo", ] [[package]] |
