-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (34 loc) · 935 Bytes
/
Cargo.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "unroll"
version = "0.2.0"
authors = ["Egor Larionov <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "An attribute-like procedural macro for unrolling for loops"
readme = "README.md"
edition = "2018"
homepage = "https://gitlab.com/elrnv/unroll"
repository = "https://gitlab.com/elrnv/unroll"
documentation = "https://docs.rs/unroll"
keywords = ["unroll", "for-loop", "attibute"]
[badges]
gitlab = { repository = "elrnv/unroll", branch = "master" }
maintenance = { status = "passively-maintained" }
[lib]
proc-macro = true
[dependencies]
syn = { version = "2", default-features = false, features = ["proc-macro", "full"] }
quote = "1"
[dev-dependencies]
criterion = "0.5"
rand = "0.8"
[features]
unstable = ["criterion/real_blackbox"]
[[bench]]
name = "matrix_vector_product"
harness = false
[[bench]]
name = "unroll_sum"
harness = false
[[bench]]
name = "unroll_mode"
harness = false