2023-03-05 10:44:04 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-config"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2023-05-19 15:36:15 -04:00
|
|
|
[features]
|
2023-05-19 17:30:54 -04:00
|
|
|
default = ["macro", "subscription"]
|
2023-05-19 15:36:15 -04:00
|
|
|
macro = ["cosmic-config-derive"]
|
2023-05-21 23:15:08 -04:00
|
|
|
subscription = ["iced_futures"]
|
2023-05-19 15:36:15 -04:00
|
|
|
|
2023-03-05 10:44:04 -07:00
|
|
|
[dependencies]
|
|
|
|
|
atomicwrites = "0.4.0"
|
2023-05-09 08:45:21 -07:00
|
|
|
calloop = { version = "0.10.5", optional = true }
|
2023-05-19 15:36:15 -04:00
|
|
|
dirs = "5.0.1"
|
|
|
|
|
notify = "6.0.0"
|
2023-03-05 10:44:04 -07:00
|
|
|
ron = "0.8.0"
|
|
|
|
|
serde = "1.0.152"
|
2023-05-19 15:36:15 -04:00
|
|
|
cosmic-config-derive = { path = "../cosmic-config-derive/", optional = true }
|
2023-05-19 17:30:54 -04:00
|
|
|
iced = { path = "../iced/", optional = true }
|
|
|
|
|
iced_futures = { path = "../iced/futures/", optional = true }
|
2023-05-19 15:36:15 -04:00
|
|
|
|