2022-08-06 09:14:44 +08:00
|
|
|
[package]
|
2022-09-05 02:22:56 +08:00
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
2023-02-25 22:38:01 +08:00
|
|
|
categories = ["science"]
|
2023-06-15 21:20:53 +08:00
|
|
|
description = "Derive crate for the Burn framework"
|
2023-02-25 22:38:01 +08:00
|
|
|
edition = "2021"
|
2022-09-05 02:22:56 +08:00
|
|
|
keywords = []
|
2023-06-15 21:20:53 +08:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-02-25 22:38:01 +08:00
|
|
|
name = "burn-derive"
|
|
|
|
readme = "README.md"
|
2023-12-02 03:33:28 +08:00
|
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-derive"
|
2023-12-04 23:47:54 +08:00
|
|
|
version = "0.12.0"
|
2022-08-06 09:14:44 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-02 03:33:28 +08:00
|
|
|
proc-macro2 = { workspace = true }
|
|
|
|
quote = { workspace = true }
|
|
|
|
syn = { workspace = true }
|
|
|
|
derive-new = { workspace = true }
|