From 7eef7ad915a608f5cad510d079b9240ed11698f1 Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Tue, 19 Mar 2019 10:30:17 +0200 Subject: BREAKING CHANGE: The config file is now in toml. The "sources" field is now [[source]]. --- src/config.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/config.rs') diff --git a/src/config.rs b/src/config.rs index 00874c2..cd874da 100644 --- a/src/config.rs +++ b/src/config.rs @@ -40,6 +40,7 @@ pub struct Config { #[serde(flatten)] pub update_config: UpdateConfig, + #[serde(rename = "source")] pub sources: Vec, } -- cgit