-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
45 lines (36 loc) · 1.06 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
37
38
39
40
41
42
43
44
45
[package]
name = "orange"
version = "0.1.0"
authors = ["Alex Kucherenko <kucherenko.email@gmail.com>"]
edition = "2018"
description = "Game description"
build = "build.rs"
[package.metadata.bundle]
name = "MyGame"
identifier = "xogames.game"
icon = ["icons/icon*.png"]
category = "Games"
resources = ["resources"]
short_description = "An example of a bundled application"
long_description = """
A trivial application that just displays a blank window with
a title bar. It serves as an example of an application that
can be bundled with cargo-bundle, as well as a test-case for
cargo-bundle's support for bundling crate examples.
"""
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["lib/*"]
[dependencies]
# Core components
common = { path = 'lib/common' }
# Game editor UI
editor = { path = 'lib/editor/' }
# Window plugin
window = { path = 'lib/window/' }
# Input collector
input = { path = 'lib/input/' }
# Internal render API
opengl = { path = 'lib/opengl/' }
[build-dependencies]
fs_extra = "1.1.0"