-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
41 lines (34 loc) · 835 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 = "crow"
version = "0.7.2"
authors = ["lcnr/Bastian Kauschke <[email protected]>"]
description = "A pixel perfect 2D rendering engine"
keywords = ["game", "rendering", "2D", "gl"]
categories = [ "game-development", "graphics", "rendering", "rendering::engine" ]
license = "MIT"
repository = "https://github.com/lcnr/crow"
documentation = "https://docs.rs/crow/"
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
features = ["serde1"]
[dependencies]
gl = "0.14"
glutin = "0.24.0"
image = "0.23"
log = "0.4"
static_assertions = "1"
[dependencies.serde]
package = "serde"
version = "1"
features = ["derive"]
optional = true
[features]
serde1 = ["serde", "glutin/serde"]
[dev-dependencies]
rand = "0.7"
rand_xorshift = "0.2.0"
pretty_env_logger = "0.4"
[[test]]
name = "test"
harness = false