diff options
author | 2023-09-10 01:14:39 +0200 | |
---|---|---|
committer | 2023-09-10 01:14:39 +0200 | |
commit | 1af5ff41abdef243588199ef7988666655924a02 (patch) | |
tree | 4dfd518dd93b0393e77355867062c60d75e7f358 /graphics/Cargo.toml | |
parent | a3489e4af960388e9f73988b88df361022a654a4 (diff) | |
parent | 1cc5bf59d7c4f47ae47d9a4e22ebaab3ea4975c1 (diff) | |
download | iced-1af5ff41abdef243588199ef7988666655924a02.tar.gz iced-1af5ff41abdef243588199ef7988666655924a02.tar.bz2 iced-1af5ff41abdef243588199ef7988666655924a02.zip |
Merge pull request #2058 from iced-rs/explicit-text-caching
Explicit text caching
Diffstat (limited to '')
-rw-r--r-- | graphics/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/Cargo.toml b/graphics/Cargo.toml index 23a19845..ff698649 100644 --- a/graphics/Cargo.toml +++ b/graphics/Cargo.toml @@ -30,6 +30,8 @@ half.workspace = true log.workspace = true raw-window-handle.workspace = true thiserror.workspace = true +cosmic-text.workspace = true +rustc-hash.workspace = true lyon_path.workspace = true lyon_path.optional = true @@ -39,3 +41,9 @@ image.optional = true kamadak-exif.workspace = true kamadak-exif.optional = true + +twox-hash.workspace = true + +[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +twox-hash.workspace = true +twox-hash.features = ["std"] |