forked from heroiclabs/fishgame-macroquad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 1.29 KB
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
[package]
name = "fishgame"
version = "0.1.0"
authors = ["Fedor Logachev <not.fl3@gmail.com>"]
edition = "2018"
[dependencies]
nanoserde = "0.1"
macroquad = { git = "https://github.com/not-fl3/macroquad.git" }
physics-platformer = { git = "https://github.com/not-fl3/macroquad.git" }
macroquad-tiled = { git = "https://github.com/not-fl3/macroquad.git" }
macroquad-particles = { git = "https://github.com/not-fl3/macroquad.git", features = ["nanoserde"] }
#macroquad-profiler = { git = "https://github.com/not-fl3/macroquad.git" }
bitfield = "0.13"
nakama-rs = { git = "https://github.com/not-fl3/nakama-rs.git" }
base64 = "0.13"
[target.'cfg(target_arch = "wasm32")'.dependencies]
sapp-jsutils = "0.1"
[patch.crates-io]
macroquad = { git = "https://github.com/not-fl3/macroquad.git" }
#[patch.'https://github.com/not-fl3/macroquad.git']
#macroquad = { path = "../macroquad" }
#macroquad-tiled = { path = "../macroquad/tiled" }
# macroquad-particles = { path = "../macroquad/particles" }
# physics-platformer = { path = "../macroquad/physics-platformer" }
# macroquad-profiler = { path = "../macroquad/profiler" }
#nanoserde = { path = "../nanoserde" }
#macroquad = { path = "../macroquad" }
# miniquad = { path = "../miniquad" }
# megaui = { path = "../megaui" }
# sapp-jsutils = { path = "../sapp-jsutils" }