-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (30 loc) · 798 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
[package]
name = "moore-neighborhood"
version = "0.2.0"
description = "Calculates Moore neighborhoods (8-connected) for arbitrary ranges and dimensions"
keywords = ["neighborhood", "8-connected", "moore"]
categories = ["computer-vision", "graphics", "game-development"]
authors = ["Markus Mayer <widemeadows@gmail.com>"]
edition = "2021"
license = "MIT"
readme = "README.md"
changelog = "CHANGELOG.md"
repository = "https://github.com/sunsided/moore-neighborhood-rs"
[[bench]]
name = "port_benchmark"
harness = false
[[bench]]
name = "macro_benchmark"
harness = false
[[bench]]
name = "port_generic_full_benchmark"
harness = false
[[bench]]
name = "port_generic_dimension_benchmark"
harness = false
[features]
default = ["std"]
std = []
[dependencies]
[dev-dependencies]
criterion = "0.4.0"