forked from not-fl3/macroquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (46 loc) · 1.53 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
54
[package]
name = "macroquad"
version = "0.4.4"
authors = ["not-fl3 <not.fl3@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/not-fl3/macroquad"
repository = "https://github.com/not-fl3/macroquad"
description = """
Simple and easy to use graphics library
"""
readme="README.md"
[features]
audio = ["quad-snd"]
log-rs = ["log"]
default = []
[package.metadata.android]
assets = "examples/"
[profile.dev.package."*"]
opt-level = 3
[package.metadata.docs.rs]
all-features = true
[dependencies]
miniquad = { version = "=0.4.0-alpha.10", features = ["log-impl"] }
quad-rand = "0.2.1"
glam = {version = "0.21", features = ["scalar-math"] }
image = { version = "0.24", default-features = false, features = ["png", "tga"] }
macroquad_macro = { version = "0.1.7", path = "macroquad_macro" }
fontdue = "0.7"
bumpalo = "3.4"
backtrace = { version = "0.3.60", optional = true, default-features = false, features = [ "std", "libbacktrace" ] }
log = { version = "0.4", optional = true }
quad-snd = { version = "0.2", optional = true }
slotmap = "1.0"
[dev-dependencies]
macroquad-particles = { path = "./particles" }
macroquad-tiled = { path = "./tiled" }
macroquad-profiler = { path = "./profiler" }
macroquad-platformer = { path = "./physics-platformer" }
# workaround to fix the examples
# this allows to use macroquad-particles in examples without two versions of macroquad
[patch.crates-io]
macroquad = { path = './' }
#quad-snd = {path = '../quad-snd'}
#miniquad = { path = '../miniquad' }
#quad-gl = {path = './quad-gl'}