diff options
Diffstat (limited to 'core/Cargo.toml')
-rw-r--r-- | core/Cargo.toml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index c273fcb4..3c557bca 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -10,17 +10,28 @@ homepage.workspace = true categories.workspace = true keywords.workspace = true +[lints] +workspace = true + +[features] +auto-detect-theme = ["dep:dark-light"] +advanced = [] + [dependencies] bitflags.workspace = true +bytes.workspace = true glam.workspace = true log.workspace = true num-traits.workspace = true once_cell.workspace = true palette.workspace = true +rustc-hash.workspace = true smol_str.workspace = true thiserror.workspace = true web-time.workspace = true -xxhash-rust.workspace = true + +dark-light.workspace = true +dark-light.optional = true [target.'cfg(windows)'.dependencies] raw-window-handle.workspace = true |