-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 956 Bytes
/
Copy pathCargo.toml
File metadata and controls
44 lines (37 loc) · 956 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
36
37
38
39
40
41
42
43
44
[package]
name = "bevy_ingame_clock"
version = "0.2.1"
edition = "2021"
authors = ["Donmatheo <dev@donmatheo.de>"]
description = "An in-game clock plugin for the Bevy game engine"
repository = "https://github.com/don-matheo/bevy_ingame_clock"
license = "MIT OR Apache-2.0"
keywords = ["bevy", "game", "clock", "time"]
categories = ["game-development"]
[dependencies]
bevy = { version = "0.17", default-features = false }
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
evalexpr = "12.0"
[dev-dependencies]
bevy = "0.17"
ron = "0.11"
[lib]
name = "bevy_ingame_clock"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = []
[[example]]
name = "events"
path = "examples/events.rs"
required-features = []
[[example]]
name = "digital_clock"
path = "examples/digital_clock.rs"
required-features = []
[[example]]
name = "custom_calendar"
path = "examples/custom_calendar.rs"
required-features = []