axonml 0.4.3

A complete ML/AI framework in pure Rust - PyTorch-equivalent functionality
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "axonml"
version = "0.4.3"
authors = ["AutomataNexus Development Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A complete ML/AI framework in pure Rust - PyTorch-equivalent functionality"
homepage = "https://AutomataNexus.com"
documentation = "https://automatanexus.github.io/AxonML"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/AutomataNexus/AxonML"
resolver = "2"

[features]
audio = [
    "nn",
    "data",
    "dep:axonml-audio",
]
core = [
    "dep:axonml-core",
    "dep:axonml-tensor",
    "dep:axonml-autograd",
]
cuda = [
    "axonml-core/cuda",
    "axonml-tensor/cuda",
    "axonml-nn/cuda",
]
cudnn = [
    "cuda",
    "axonml-core/cudnn",
    "axonml-tensor/cudnn",
    "axonml-nn/cudnn",
]
data = [
    "core",
    "dep:axonml-data",
]
default = ["full"]
distributed = [
    "nn",
    "dep:axonml-distributed",
]
full = [
    "core",
    "nn",
    "data",
    "vision",
    "text",
    "audio",
    "distributed",
    "profile",
    "llm",
    "jit",
    "onnx",
]
jit = [
    "core",
    "dep:axonml-jit",
]
llm = [
    "nn",
    "dep:axonml-llm",
]
nccl = [
    "distributed",
    "axonml-distributed/nccl",
]
nn = [
    "core",
    "dep:axonml-nn",
    "dep:axonml-optim",
]
onnx = [
    "core",
    "dep:axonml-onnx",
]
profile = [
    "core",
    "dep:axonml-profile",
]
text = [
    "nn",
    "data",
    "dep:axonml-text",
]
vision = [
    "nn",
    "data",
    "dep:axonml-vision",
]
wgpu = ["axonml-core/wgpu"]

[lib]
name = "axonml"
path = "src/lib.rs"

[[example]]
name = "hvac_inference"
path = "examples/hvac_inference.rs"

[[example]]
name = "hvac_model"
path = "examples/hvac_model.rs"

[[example]]
name = "hvac_training"
path = "examples/hvac_training.rs"

[[example]]
name = "mnist_training"
path = "examples/mnist_training.rs"

[[example]]
name = "nlp_audio_test"
path = "examples/nlp_audio_test.rs"

[[example]]
name = "simple_training"
path = "examples/simple_training.rs"

[[example]]
name = "train_panoptes"
path = "examples/train_panoptes.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.axonml-audio]
version = "0.4.1"
optional = true

[dependencies.axonml-autograd]
version = "0.4.1"
optional = true

[dependencies.axonml-core]
version = "0.4.1"
optional = true

[dependencies.axonml-data]
version = "0.4.1"
optional = true

[dependencies.axonml-distributed]
version = "0.4.1"
optional = true

[dependencies.axonml-jit]
version = "0.4.1"
optional = true

[dependencies.axonml-llm]
version = "0.4.1"
optional = true

[dependencies.axonml-nn]
version = "0.4.1"
optional = true

[dependencies.axonml-onnx]
version = "0.4.1"
optional = true

[dependencies.axonml-optim]
version = "0.4.1"
optional = true

[dependencies.axonml-profile]
version = "0.4.1"
optional = true

[dependencies.axonml-tensor]
version = "0.4.1"
optional = true

[dependencies.axonml-text]
version = "0.4.1"
optional = true

[dependencies.axonml-vision]
version = "0.4.1"
optional = true

[dependencies.rand]
version = "0.8"