knok 0.1.0

Compile-time linalg graphs for Rust
# 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 = "2021"
name = "knok"
version = "0.1.0"
authors = ["Gyungmin Myung"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compile-time linalg graphs for Rust"
readme = false
license = "Apache-2.0"
repository = "https://github.com/gmmyung/knok"

[features]
default = [
    "std",
    "host-runtime",
]
embedded-runtime = [
    "dep:eerie",
    "eerie/runtime",
]
host-runtime = [
    "std",
    "dep:eerie",
    "eerie/runtime",
    "eerie/std",
]
std = ["eerie?/std"]

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "runtime"
path = "benches/runtime.rs"
harness = false

[dependencies.eerie]
version = "0.4.0"
optional = true
default-features = false

[dependencies.knok-macros]
version = "0.1.0"

[dev-dependencies.criterion]
version = "0.7"

[dev-dependencies.nalgebra]
version = "0.34"
features = ["std"]
default-features = false

[dev-dependencies.ndarray]
version = "0.17"

[dev-dependencies.trybuild]
version = "1.0"