From ae9521e500d97c9495003a727b6fd931671dda8b Mon Sep 17 00:00:00 2001 From: Azriel Hoh Date: Sat, 30 May 2020 19:23:16 +1200 Subject: Feature gate `font-kit` behind `"default_system_font"` feature. --- glow/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'glow/Cargo.toml') diff --git a/glow/Cargo.toml b/glow/Cargo.toml index 262f0264..baf2eb2f 100644 --- a/glow/Cargo.toml +++ b/glow/Cargo.toml @@ -9,6 +9,7 @@ repository = "https://github.com/hecrj/iced" [features] canvas = ["iced_graphics/canvas"] +default_system_font = ["iced_graphics/font-source"] # Not supported yet! image = [] svg = [] @@ -29,7 +30,7 @@ path = "../native" [dependencies.iced_graphics] version = "0.1" path = "../graphics" -features = ["font-source", "font-fallback", "font-icons", "opengl"] +features = ["font-fallback", "font-icons", "opengl"] [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] -- cgit