forked from RichoDemus/bevy-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (23 loc) · 883 Bytes
/
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
[package]
name = "leafwing_terminal"
version = "0.2.5"
edition = "2021"
authors = ["Alice I. Cecile<[email protected]>", "Rose Peck<[email protected]>"]
homepage = "https://leafwing-studios.com"
repository = "https://github.com/Leafwing-Studios/leafwing_terminal/"
description = "A virtual terminal for Bevy games"
license = "MIT"
readme = "README.md"
[dependencies]
bevy = { version = "0.7", default-features = false }
leafwing_terminal_derive = { path = "./leafwing_terminal_derive" }
leafwing_terminal_parser = { path = "./leafwing_terminal_parser" }
bevy_egui = "0.14"
[dev-dependencies]
bevy = "0.7"
[workspace]
members = ["leafwing_terminal_derive", "leafwing_terminal_parser"]
[patch.crates-io]
# Use for local development
leafwing_terminal_derive = {path = "./leafwing_terminal_derive"}
leafwing_terminal_parser = {path = "./leafwing_terminal_parser"}