Skip to content

Commit

Permalink
fix config reading
Browse files Browse the repository at this point in the history
  • Loading branch information
n-hass committed Feb 2, 2024
1 parent a7707bb commit fe9a2eb
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 124 deletions.
161 changes: 40 additions & 121 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "telelog"
version = "0.1.8"
version = "0.1.9"
edition = "2021"

[dependencies]
chrono = "0.4.31"
clap = { version = "4.4.18", features = [ "cargo" ] }
config = "0.14.0"
config = "0.13.4"
lazy_static = "1.4.0"
regex = "1.10.2"
reqwest = "0.11.23"
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ pub fn colour_translate(priority: u8) -> String {
5 => "🔵".to_owned(),
6 => "⚫️".to_owned(),
7 => "⚪️".to_owned(),
_ => "⚪️".to_owned(),
_ => "".to_owned(),
}
}

0 comments on commit fe9a2eb

Please sign in to comment.