-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (31 loc) · 936 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
[package]
name = "grid_shapes"
version = "0.1.3"
authors = ["Wes Feldsine <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A general purpose 2d grid shape library"
repository = "https://github.com/Laocoon7/grid_shapes"
homepage = "https://github.com/Laocoon7/grid_shapes"
# documentation
keywords = ["grid", "shapes", "tile", "2d", "coordinate"]
categories = ["algorithms", "data-structures", "game-development"]
readme = "./README.md"
[features]
default = [
# "extentions",
]
extentions = []
serde = [
"dep:serde",
"coord_2d/serialize",
"grid_2d/serialize",
]
[dependencies]
coord_2d = { version = "0.3" } # A general purpose 2d coordinate
grid_2d = { version = "0.15" } # A general purpose 2d grid
serde = { version = "1", optional = true } # A generic serialization/deserialization framework
# [[example]]
# name = "test"
# path = "examples/test.rs"
# required-features = []