26 lines
665 B
TOML
26 lines
665 B
TOML
[package]
|
|
name = "rtx-macros"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
authors = ["RustyTorch Team"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Derive macros for the RustyTorch framework"
|
|
repository = "https://github.com/rustytorch/rustytorch"
|
|
keywords = ["deep-learning", "machine-learning", "neural-network", "macro"]
|
|
categories = ["science", "development-tools::procedural-macro-helpers"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full", "parsing", "extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
rtx-nn = { path = "../rtx-nn" }
|
|
rtx-backend = { path = "../rtx-backend" }
|
|
|
|
[lints]
|
|
workspace = true
|