Skip to content

Commit

Permalink
Fix internal included tasks not being marked correct
Browse files Browse the repository at this point in the history
  • Loading branch information
thmshmm committed Aug 11, 2024
1 parent 9ce0452 commit e0912f2
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 17 deletions.
274 changes: 272 additions & 2 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ edition = "2021"
anyhow = "1.0.79"
colored = "2.1.0"
crossterm = "0.27.0"
directories = "5.0.1"
lazy_static = "1.5.0"
ratatui = "0.25.0"
serde = "1.0.195"
serde_yaml = "0.9.30"
tracing = "0.1.40"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
5 changes: 5 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ use taskui::{

mod taskfile;
mod taskui;
mod trace;

fn main() -> Result<()> {
trace::initialize_logging()?;

trace_dbg!("Starting taskui");

let taskfile = taskfile::config::load()?;

let cfg = Config::load();
Expand Down
Loading

0 comments on commit e0912f2

Please sign in to comment.