2021-04-11 14:01:30 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-macros"
|
2024-06-23 21:28:37 +08:00
|
|
|
version = "0.2.2"
|
|
|
|
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"
|
2024-06-23 21:28:37 +08:00
|
|
|
categories = ["science", "mathematics"]
|
|
|
|
keywords = ["linear", "algebra", "matrix", "vector", "math"]
|
2021-05-05 14:51:16 +08:00
|
|
|
license = "Apache-2.0"
|
2021-04-11 14:01:30 +08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-23 00:43:32 +08:00
|
|
|
syn = { version = "2.0", features = ["full"] }
|
2021-04-11 17:08:41 +08:00
|
|
|
quote = "1.0"
|
|
|
|
proc-macro2 = "1.0"
|
2021-04-11 14:01:30 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-06-23 21:28:37 +08:00
|
|
|
nalgebra = { version = "0.33", path = ".." }
|