-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 801 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
[package]
name = "veccentric"
authors = ["micouy <m.powierza@tutanota.com>"]
description = "Tiny 2D vector library."
readme = "README.md"
repository = "https://github.com/micouy/veccentric"
license = "MIT"
categories = ["game-development", "simulation", "mathematics"]
keywords = ["vector", "2D", "gamedev"]
version = "0.3.1"
edition = "2018"
include = [
"Cargo.toml",
"**/*.rs",
"**/*.md",
"!scratchpad.md",
"assets/",
".gitignore",
]
[[example]]
name = "engine"
crate-type = ["lib"]
[dependencies]
rand = { version = "0.8", features = ["small_rng"], optional = true }
[dev-dependencies]
float-cmp = "0.9"
pixels = "0.5"
winit = "0.25"
winit_input_helper = "0.10"
[features]
default = []
all = ["random"]
random = ["rand"]
[package.metadata.docs.rs]
all-features = true