diff options
author | 2019-12-01 03:33:24 +0100 | |
---|---|---|
committer | 2019-12-01 03:33:24 +0100 | |
commit | 25ed33329b36027d98a0ab0007e7b78b4402a505 (patch) | |
tree | 0e3453903ab55fcd7fbad8447079d58b6dc4441f /wgpu/Cargo.toml | |
parent | e404f5098a4e053f52e75175b6cd677e60d27517 (diff) | |
parent | 80a8a574712f1652c7311554ad358c5bc15d5515 (diff) | |
download | iced-25ed33329b36027d98a0ab0007e7b78b4402a505.tar.gz iced-25ed33329b36027d98a0ab0007e7b78b4402a505.tar.bz2 iced-25ed33329b36027d98a0ab0007e7b78b4402a505.zip |
Merge pull request #74 from hecrj/fix/font-load-panic
Fallback to embedded font when system font is unsupported
Diffstat (limited to 'wgpu/Cargo.toml')
-rw-r--r-- | wgpu/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index f008a99c..47ec0537 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -4,14 +4,14 @@ version = "0.1.0" authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] edition = "2018" description = "A wgpu renderer for Iced" -license = "MIT" +license = "MIT AND OFL-1.1" repository = "https://github.com/hecrj/iced" [dependencies] iced_native = { version = "0.1.0", path = "../native" } wgpu = "0.4" glyph_brush = "0.6" -wgpu_glyph = "0.6" +wgpu_glyph = { version = "0.7", git = "https://github.com/hecrj/wgpu_glyph", branch = "fix/font-load-panic" } raw-window-handle = "0.3" image = "0.22" glam = "0.8" |