-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 1.17 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
[package]
authors = ["Laocoon <[email protected]>", "Jacob LeCoq <[email protected]>"]
categories = ["games"]
description = "A roguelike toolkit plugin for bevy"
edition = "2021"
exclude = ["assets/", "tools/", ".github/", "crates/"]
homepage = "https://github.com/YendorEngine/yendor"
keywords = ["game", "ascii", "roguelike", "grid"]
license = "MIT OR Apache-2.0"
name = "yendor_lib"
readme = "README.md"
repository = "https://github.com/YendorEngine/yendor"
version = "0.1.0"
[workspace]
members = [
"tools/ci",
# "tools/build-example-pages",
# "tools/build-wasm-examples",
# "errors",
"crates/*",
]
resolver = "2"
[features]
camera_shake = ["dep:yendor_camera_shake"]
roguelike = ["yendor_rl"]
[workspace.dependencies]
bevy = { version = "0.9", default-features = false, features = [] }
ulid = { version = "1", default-features = false }
[dependencies]
yendor_bevy_utils = { path = "./crates/yendor_bevy_utils", version = "0.1" }
yendor_camera_shake = { path = "./crates/yendor_camera_shake", optional = true, version = "0.1" }
yendor_rl = { path = "./crates/yendor_rl", optional = true, version = "0.1" }