-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (46 loc) · 1.32 KB
/
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
44
45
46
47
48
49
50
51
52
53
[package]
name = "oml-game"
version = "0.40.3-dev"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT"
description = "Game foundation extracted from Fiiish-RS to remove boilerplate for future procjects."
readme = "README.md"
homepage = "https://github.com/AndreasOM/oml-game"
repository = "https://github.com/AndreasOM/oml-game"
keywords = ["tools", "gamedev"]
categories = ["multimedia","game-development"]
[features]
# default = [ "audio_apple", "audio_miniaudio", "audio_stub" ]
# default = [ "use_stub" ]
# default = [ "use_apple" ]
# default = [ "use_miniaudio" ]
default = []
audio_apple = ["oml-audio/use_apple"]
audio_miniaudio = ["oml-audio/use_miniaudio"]
audio_stub = ["oml-audio/use_stub"]
[dependencies]
anyhow = "1.0.58"
backtrace = "0.3.66"
chrono = "0.4.19"
crc = "3.0.0"
derivative = "2.2.0"
derive-getters = "0.2.0"
dirs-next = "2.0.0"
glutin = "0.29.1"
image = "0.24.2"
once_cell = "1.14.0"
regex = "1.5.6"
serde = { version = "1.0.147", features = ["derive"] }
serde_yaml = "0.9.14"
tracing = "0.1.36"
png = "0.17.7"
[dependencies.oml-audio]
#path = "../oml-audio"
#version = "0.8.5-dev"
version = "0.8.8-alpha"
#[dependencies.png]
#git = "https://github.com/AndreasOM/image-png"
#path = "../image-png"
[build-dependencies]
gl_generator = "0.14.0"