toraniko 0.1.0

A Rust implementation of the toraniko factor model
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.

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 components
  • primitives: Core type definitions
  • traits: Trait abstractions
  • math: Mathematical operations
  • styles: Style factor implementations
  • model: Factor return estimation
  • utils: Data utilities

Example

// With default features (all components):
use toraniko::primitives;
use toraniko::model;

// Or with specific features only:
// [dependencies]
// toraniko = { version = "0.1", default-features = false, features = ["model"] }