diff options
author | 2020-12-20 02:50:38 +0100 | |
---|---|---|
committer | 2020-12-20 02:50:38 +0100 | |
commit | a366600e7347c24bbb6679118a12b616a031deff (patch) | |
tree | 65058048dbc6c65ce96a41ed6119fd5c4925e267 /wgpu/Cargo.toml | |
parent | 86361f003caa1563392dd2ba46c3468f91995c61 (diff) | |
parent | 4bbfdef14b6983c05d91137f930c15a52da37d86 (diff) | |
download | iced-a366600e7347c24bbb6679118a12b616a031deff.tar.gz iced-a366600e7347c24bbb6679118a12b616a031deff.tar.bz2 iced-a366600e7347c24bbb6679118a12b616a031deff.zip |
Merge pull request #669 from hecrj/improvement/update-resvg-and-font-kit
Update `resvg` and `font-kit`
Diffstat (limited to 'wgpu/Cargo.toml')
-rw-r--r-- | wgpu/Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index 5f4699a8..d469da0a 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT AND OFL-1.1" repository = "https://github.com/hecrj/iced" [features] -svg = ["resvg"] +svg = ["resvg", "usvg"] canvas = ["iced_graphics/canvas"] qr_code = ["iced_graphics/qr_code"] default_system_font = ["iced_graphics/font-source"] @@ -40,8 +40,11 @@ version = "0.23" optional = true [dependencies.resvg] -version = "0.9" -features = ["raqote-backend"] +version = "0.12" +optional = true + +[dependencies.usvg] +version = "0.12" optional = true [package.metadata.docs.rs] |