-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1018 Bytes
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1018 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
[workspace]
members = [
"examples/audio_example",
"examples/bullet_heaven",
"examples/camera_example", "examples/crash",
"examples/pixel_scaling_example",
"examples/platformer_example",
"examples/render_example", "examples/rotation_example",
"examples/spritesheet_example", "examples/ui",
]
[package]
name = "ABC_Game_Engine"
version = "0.1.2"
edition = "2021"
authors = ["Ethan Almloff <ethanalmloff@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/ABC-Engine/ABC-Game-Engine"
description = "A simple, fast, and flexible Game Engine written in Rust, with simplicity in mind."
keywords = ["ecs", "multithreaded", "game", "engine", "fast"]
categories = ["game-development", "game-engines", "graphics"]
[dependencies]
glam = "0.27.0"
rand = "0.8.5"
rodio = "0.17.3"
ABC-ECS = "0.2.1"
fxhash = "0.2.1"
rapier2d = "0.19.0"
tracing = "0.1.40"
gilrs = "0.10.7"
chrono = "0.4.38"
[patch.'https://github.com/ABC-Engine/ABC-Game-Engine']
ABC_Game_Engine = { path = "." }