termesh-tasks 0.1.3

Internal component of a terminal-native, agent-first IDE.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Language-neutral task discovery and output decoding.
#![forbid(unsafe_code)]

mod cargo;
mod java;
mod node;
mod output;
mod python;
mod service;
mod text_problems;

pub use cargo::AdapterTaskService;
pub use output::CargoOutputDecoder;
pub use service::{DecodedTaskOutput, TaskOutputDecoder, TaskService};
pub use text_problems::TextProblemDecoder;