diff options
author | 2022-05-21 17:33:31 -0400 | |
---|---|---|
committer | 2022-05-21 17:33:31 -0400 | |
commit | 2cfb307f8c3927a0876c6b754a5d7d673b9edfee (patch) | |
tree | 577559723dcadfd2e8719780f711741c82086e56 /style/Cargo.toml | |
parent | 664251f3f5c7b76f69a97683af1468094bba887f (diff) | |
download | iced-2cfb307f8c3927a0876c6b754a5d7d673b9edfee.tar.gz iced-2cfb307f8c3927a0876c6b754a5d7d673b9edfee.tar.bz2 iced-2cfb307f8c3927a0876c6b754a5d7d673b9edfee.zip |
Implement basic theming `Palette`
Diffstat (limited to 'style/Cargo.toml')
-rw-r--r-- | style/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/style/Cargo.toml b/style/Cargo.toml index bb2a9645..cf9d328b 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -13,3 +13,10 @@ categories = ["gui"] [dependencies.iced_core] version = "0.5" path = "../core" +features = ["palette"] + +[dependencies.palette] +version = "0.6" + +[dependencies.lazy_static] +version = "1.4" |