-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·26 lines (21 loc) · 660 Bytes
/
Cargo.toml
File metadata and controls
executable file
·26 lines (21 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "arraygen"
version = "0.3.2"
authors = ["José Manuel Barroso Galindo <theypsilon@gmail.com>"]
license = "MIT"
edition = "2021"
description = "Derive macro for generating arrays from struct fields."
readme = "README.md"
documentation = "https://docs.rs/arraygen"
homepage = "https://github.com/theypsilon/arraygen"
repository = "https://github.com/theypsilon/arraygen"
keywords = ["array", "struct", "derive", "field", "iter"]
categories = ["rust-patterns"]
[lib]
proc-macro = true
[dependencies]
quote = "1.0.9"
proc-macro2 = "1.0.26"
syn = { version = "1.0.72", features = ["extra-traits"] }
[dev-dependencies]
compiletest_rs = "0.7.0"