/ Cargo.toml
Cargo.toml
1 # SPDX-FileCopyrightText: 2024 sntx <sntx@sntx.space> 2 # SPDX-License-Identifier: AGPL-3.0-or-later 3 [workspace] 4 members = [ 5 "examples/bevy_term_counter", 6 "examples/bevy_term_menus", 7 "examples/bevy_term_minimal", 8 "examples/bevy_term_subprocess" 9 ] 10 resolver = "2" 11 12 [workspace.package] 13 authors = ["~sntx"] 14 description = "Easy terminal event handling and rendering with Bevy!" 15 repository = "https://git.sr.ht/~sntx/bevy_term" 16 version = "0.15.0" 17 18 [package] 19 name = "bevy_term" 20 authors.workspace = true 21 description.workspace = true 22 repository.workspace = true 23 version.workspace = true 24 edition = "2021" 25 license = "AGPL-3.0" 26 readme = "README.md" 27 28 [dependencies] 29 bevy_app = "0.15" 30 bevy_ecs = "0.15" 31 bevy_utils = "0.15" 32 ratatui = "0.29" 33 34 [features] 35 multi_threaded = ["bevy_ecs/multi_threaded"]