teaql-tool-core 0.1.1

Core types and error definitions for the TeaQL Tool ecosystem.
Documentation
  • Coverage
  • 28.57%
    2 out of 7 items documented0 out of 1 items with examples
  • Size
  • Source code size: 4.76 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 469.73 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 6s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • teaql/teaql-rust-utils
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • philipgreat

teaql-tool-core

Core types and error definitions for the TeaQL Tool ecosystem.

This crate is the strict foundation of the TeaQL Tool library. It contains the unified Result type alias and the TeaQLToolError enum that all other sub-crates use to guarantee consistent error handling across the entire T:: facade.

Usage

You typically do not need to depend on this crate directly unless you are writing a custom plugin for the TeaQL ecosystem. Instead, depend on the teaql-tool crate.

[dependencies]
teaql-tool-core = "0.1"
use teaql_tool_core::{Result, TeaQLToolError};