forked from M-Labs/nalgebra
25 lines
658 B
TOML
25 lines
658 B
TOML
[package]
|
|
name = "nalgebra-macros"
|
|
version = "0.2.2"
|
|
authors = ["Andreas Longva", "Sébastien Crozet <developer@crozet.re>"]
|
|
edition = "2018"
|
|
description = "Procedural macros for nalgebra"
|
|
documentation = "https://www.nalgebra.org/docs"
|
|
homepage = "https://nalgebra.org"
|
|
repository = "https://github.com/dimforge/nalgebra"
|
|
readme = "../README.md"
|
|
categories = ["science", "mathematics"]
|
|
keywords = ["linear", "algebra", "matrix", "vector", "math"]
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "2.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
|
|
[dev-dependencies]
|
|
nalgebra = { version = "0.33", path = ".." }
|