feat (cosmic-config): iced subscription

This commit is contained in:
Ashley Wulber 2023-05-19 17:30:54 -04:00
parent 76fd9207e5
commit c2ddc97685
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
3 changed files with 126 additions and 5 deletions

View file

@ -4,8 +4,9 @@ version = "0.1.0"
edition = "2021"
[features]
default = ["macro"]
default = ["macro", "subscription"]
macro = ["cosmic-config-derive"]
subscription = ["iced", "iced_futures"]
[dependencies]
atomicwrites = "0.4.0"
@ -15,4 +16,6 @@ notify = "6.0.0"
ron = "0.8.0"
serde = "1.0.152"
cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true }
iced = { path = "../iced/", optional = true }
iced_futures = { path = "../iced/futures/", optional = true }