nalgebra/nalgebra-macros/Cargo.toml

26 lines
686 B
TOML
Raw Normal View History

[package]
name = "nalgebra-macros"
2023-07-09 18:04:59 +08:00
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]
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"
[dev-dependencies]
2023-01-15 00:04:22 +08:00
nalgebra = { version = "0.32.0", path = ".." }
trybuild = "1.0.42"