-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 947 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 947 Bytes
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 = "game-loop"
version = "1.3.0"
authors = ["Chris Patuzzo <chris@patuzzo.co.uk>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/tuzz/game-loop"
documentation = "https://github.com/tuzz/game-loop"
homepage = "https://crates.io/crates/game-loop"
description = "A Rust crate that implements a frame-rate-independent game loop."
keywords = ["game", "loop", "frame", "rate", "independent"]
categories = ["game-development", "simulation", "rendering"]
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
[target.wasm32-unknown-unknown.dependencies.web-sys]
version = "0.3"
features = [
"Performance",
"Window",
]
[dependencies]
winit = { version = "0.30", optional = true }
tao = { version = "0.30", optional = true }
[dev-dependencies]
muda = "0.14"
[[example]]
name = "using_winit"
required-features = ["winit"]
[[example]]
name = "using_tao"
required-features = ["tao"]