-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
43 lines (37 loc) · 997 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
[package]
name = "piston2d-graphics"
version = "0.45.0"
edition = "2018"
authors = [
"bvssvni <[email protected]>",
"Coeuvre <[email protected]>",
"leonkunert <[email protected]>",
"gmorenz",
"Potpourri",
"TyOverby <[email protected]>"]
keywords = ["graphics", "2d", "game", "piston", "triangulation"]
description = "A library for 2D graphics that works with multiple back-ends"
license = "MIT"
readme = "README.md"
repository = "https://github.com/pistondevelopers/graphics.git"
homepage = "https://github.com/pistondevelopers/graphics"
categories = ["rendering::graphics-api"]
exclude = ["scripts", "Cargo.png"]
[lib]
name = "graphics"
path = "./src/lib.rs"
[dependencies]
interpolation = "0.3.0"
piston-texture = "0.9.0"
piston-viewport = "1.0.0"
read_color = "1.0.0"
vecmath = "1.0.0"
[dependencies.rusttype]
version = "0.9.0"
optional = true
[dependencies.fnv]
version = "1.0.5"
optional = true
[features]
default = []
glyph_cache_rusttype = ["rusttype", "fnv"]