forked from not-fl3/macroquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 1.18 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
[package]
name = "macroquad"
version = "0.3.0-alpha.14"
authors = ["not-fl3 <[email protected]>"]
edition = "2018"
license = "MIT/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]
default = ["log-impl"]
log-impl = ["miniquad/log-impl"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
miniquad = "0.3.0-alpha.24"
quad-gl = { version = "=0.2.13", path = "./quad-gl" }
quad-rand = "0.1"
glam = {version = "0.10", features = ["scalar-math"] }
image = { version = "0.22", default-features = false, features = ["png_codec", "tga"] }
macroquad_macro = { version = "0.1.2", path = "macroquad_macro" }
fontdue = "0.3.2"
[dev-dependencies]
megaui-macroquad = "0.1.3"
macroquad-particles = { path = "./particles" }
macroquad-tiled = { path = "./tiled" }
physics-platformer = { path = "./physics-platformer" }
# workaround to fix the examples
# this allows to use megaui-macroquad in examples without two versions of macroquad
[patch.crates-io]
macroquad = { path = './' }
#miniquad = { path = '../miniquad' }
#quad-gl = {path = './quad-gl'}