My personal-knowledge-system, with deeply integrated task tracking and long term goal planning capabilities.
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat/flake: using nextest

+3 -2
+1 -1
crates/dto/tests/task.rs
··· 70 70 71 71 println!("group: {group:#?}"); 72 72 println!("task: {task:#?}"); 73 - panic!() 73 + // panic!() 74 74 }
+1
flake.nix
··· 94 94 cargo-deny 95 95 cargo-edit 96 96 cargo-watch 97 + cargo-nextest 97 98 rust-analyzer 98 99 99 100 sea-orm-cli
+1 -1
justfile
··· 18 18 19 19 # Run all tests 20 20 test: 21 - cargo test {{_cargo_flags}} 21 + cargo nextest r {{_cargo_flags}} 22 22 23 23 24 24 # Only used to build / generate entities