[package]
edition = "2024"
rust-version = "1.94"
name = "candle-einops-macros"
version = "0.2.0"
authors = ["tomsanbear <thomas@santerre.xyz>"]
build = false
exclude = [
".github/",
"tests/dependency_names.rs",
"tests/fixtures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for candle-einops tensor transformations and einsum"
documentation = "https://docs.rs/candle-einops"
readme = "README.md"
keywords = [
"tensor",
"candle",
"einops",
"machine-learning",
"ai",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tomsanbear/candle-einops"
[lib]
name = "candle_einops_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.proc-macro-crate]
version = "3.5"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dev-dependencies.trybuild]
version = "1"