Skip to content

Commit

Permalink
Remove rayon
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Nov 21, 2024
1 parent b2aadbf commit 5cb0134
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion azul-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
std = ["css_parser"]
2 changes: 1 addition & 1 deletion azul-desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion azul-dll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions azul-layout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -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"]

0 comments on commit 5cb0134

Please sign in to comment.