a TUI like cli tool to manage the features of your rust-project dependencies

add tangled ci workflow

+31
+31
.tangled/workflows/lint.yml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["main"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: "nixery" 8 + 9 + dependencies: 10 + nixpkgs: 11 + - cargo 12 + - rustc 13 + - rustfmt 14 + - clippy 15 + - clang 16 + 17 + steps: 18 + - name: "Build" 19 + command: "cargo build" 20 + 21 + - name: "Check" 22 + command: "cargo check --all-targets --all-features" 23 + 24 + - name: "Test" 25 + command: "cargo test --all-features" 26 + 27 + - name: "Format" 28 + command: "cargo fmt --all -- --check" 29 + 30 + - name: "Lint" 31 + command: "cargo clippy --all-targets --all-features -- -D warnings"