2021-04-11 14:01:30 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-macros"
|
2023-07-09 18:04:59 +08:00
|
|
|
version = "0.2.1"
|
2021-05-05 14:51:16 +08:00
|
|
|
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
2021-04-11 14:01:30 +08:00
|
|
|
edition = "2018"
|
2021-05-05 14:51:16 +08:00
|
|
|
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"
|
2021-04-11 14:01:30 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-11 17:08:41 +08:00
|
|
|
syn = { version="1.0", features = ["full"] }
|
|
|
|
quote = "1.0"
|
|
|
|
proc-macro2 = "1.0"
|
2021-04-11 14:01:30 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-15 00:04:22 +08:00
|
|
|
nalgebra = { version = "0.32.0", path = ".." }
|
2021-04-30 20:53:49 +08:00
|
|
|
trybuild = "1.0.42"
|