diff --git a/Cargo.lock b/Cargo.lock index 6e47a41f..93ce2cbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,6 @@ dependencies = [ "gl-context-loader", "highway", "libm", - "rayon", "rust-fontconfig", ] diff --git a/azul-core/Cargo.toml b/azul-core/Cargo.toml index 696e72c7..efe880f3 100644 --- a/azul-core/Cargo.toml +++ b/azul-core/Cargo.toml @@ -29,4 +29,4 @@ default = ["std"] # Enables the CSS parser css_parser = ["azul-css-parser"] # Enables hashing for timing and threading -std = ["multithreading", "css_parser"] \ No newline at end of file +std = ["css_parser"] \ No newline at end of file diff --git a/azul-desktop/Cargo.toml b/azul-desktop/Cargo.toml index 15231aa0..0aefdc50 100644 --- a/azul-desktop/Cargo.toml +++ b/azul-desktop/Cargo.toml @@ -43,7 +43,7 @@ dispatch = "0.2.0" [features] default = ["std", "logging", "css_parser", "font_loading", "text_layout", "svg", "xml", "image_loading", "gif", "jpeg", "png", "tiff", "bmp", "use_fern_logger"] -std = ["azul-core/multithreading", "azul-core/std"] +std = ["azul-core/std"] use_pyo3_logger = [] use_fern_logger = ["fern"] logging = ["log"] diff --git a/azul-dll/Cargo.toml b/azul-dll/Cargo.toml index ce603491..ed825469 100644 --- a/azul-dll/Cargo.toml +++ b/azul-dll/Cargo.toml @@ -37,7 +37,7 @@ default = ["std", "logging", "css_parser", "image_loading", "ico", "tga", "hdr", # removing any of these features will lead to compile error # this will be fixed in the future minimal = ["std", "css_parser", "font_loading", "text_layout", "no_static_freetype"] -std = ["azul-core/std", "azul-desktop/std", "azul-core/multithreading"] +std = ["azul-core/std", "azul-desktop/std"] logging = ["azul-desktop/logging", "log"] use_fern_logger = ["azul-desktop/use_fern_logger", "logging"] use_pyo3_logger = ["azul-desktop/use_pyo3_logger", "pyo3-log", "logging"] diff --git a/azul-layout/Cargo.toml b/azul-layout/Cargo.toml index d846a1c6..41da2d61 100644 --- a/azul-layout/Cargo.toml +++ b/azul-layout/Cargo.toml @@ -15,7 +15,7 @@ autoexamples = false [dependencies] azul-css = { path = "../azul-css", version = "0.0.1", default-features = false } -azul-core = { path = "../azul-core", version = "0.0.2", default-features = false, features = ["multithreading", "css_parser"] } +azul-core = { path = "../azul-core", version = "0.0.2", default-features = false, features = ["css_parser"] } azul-text-layout = { path = "../azul-text-layout", version = "0.0.5", default-features = false, optional = true } rayon = { version = "1.5.3", default-features = false } rust-fontconfig = { version = "0.1.13", default-features = false } @@ -26,5 +26,5 @@ azulc = { path = "../azulc", version = "0.0.3" } [features] default = ["std", "text_layout"] -std = ["azul-core/multithreading"] +std = [] text_layout = ["azul-text-layout"]