forked from 17cupsofcoffee/tetra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 820 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
[package]
name = "tetra"
description = "A simple 2D game framework written in Rust"
version = "0.4.2"
edition = "2018"
authors = ["Joe Clay <[email protected]>"]
license = "MIT"
repository = "https://github.com/17cupsofcoffee/tetra"
documentation = "https://docs.rs/tetra"
readme = "README.md"
keywords = ["game", "engine", "framework", "gamedev"]
categories = ["game-engines"]
[features]
sdl2_bundled = ["sdl2/bundled"]
sdl2_static_link = ["sdl2/static-link"]
serde_support = ["serde", "vek/serde"]
[dependencies]
sdl2 = "0.34.0"
rodio = "0.11.0"
glow = "0.5.0"
image = "0.23.1"
vek = { version = "0.11.0", default-features = false }
hashbrown = "0.8.0"
serde = { version = "1.0.104", optional = true }
ab_glyph = "0.2.2"
unicode-normalization = "0.1.12"
bytemuck = "1.3.1"
[dev-dependencies]
rand = "0.7.3"