26 lines
684 B
TOML
26 lines
684 B
TOML
[package]
|
|
name = "nalgebra-macros"
|
|
version = "0.2.1"
|
|
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="1.0", features = ["full"] }
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|
|
|
|
[dev-dependencies]
|
|
nalgebra = { version = "0.32.0", path = ".." }
|
|
trybuild = "1.0.42"
|