nanoeval-solver 0.0.1

Solver abstractions and implementations for evaluation task execution in the nanoeval framework
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/refcell/nanoeval/main/assets/square.png",
    html_favicon_url = "https://raw.githubusercontent.com/refcell/nanoeval/main/assets/favicon.ico",
    issue_tracker_base_url = "https://github.com/refcell/nanoeval/issues/"
)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#![cfg_attr(not(feature = "std"), no_std)]

mod traits;
pub use traits::Solve;