[package]
edition = "2024"
rust-version = "1.88"
name = "ferrotorch-jit-script"
version = "0.6.2"
authors = ["doll"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural-macro front end for ferrotorch-jit: #[script] attribute that compiles a Rust function body into a TracedModule"
homepage = "https://github.com/dollspace-gay/ferrotorch"
readme = "README.md"
keywords = [
"deep-learning",
"machine-learning",
"autograd",
"neural-network",
"tensor",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dollspace-gay/ferrotorch"
[lib]
name = "ferrotorch_jit_script"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "conformance_jit_script"
path = "tests/conformance_jit_script.rs"
[[test]]
name = "conformance_surface_coverage"
path = "tests/conformance_surface_coverage.rs"
[[test]]
name = "script_macro"
path = "tests/script_macro.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]