docs.rs failed to build toraniko-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
toraniko
A Rust implementation of the toraniko factor model.
This crate provides a unified interface to the toraniko factor model ecosystem. Individual components can be enabled via feature flags.
Features
full(default): Enables all componentsprimitives: Core type definitionstraits: Trait abstractionsmath: Mathematical operationsstyles: Style factor implementationsmodel: Factor return estimationutils: Data utilities
Example
// With default features (all components):
use primitives;
use model;
// Or with specific features only:
// [dependencies]
// toraniko = { version = "0.1", default-features = false, features = ["model"] }