-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (30 loc) · 873 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
28
29
30
31
32
33
34
35
[package]
name = "bevy_ratatui_camera"
description = "A bevy plugin for rendering your bevy app to the terminal using ratatui."
version = "0.8.2"
edition = "2021"
authors = ["cxreiff <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/cxreiff/bevy_ratatui_camera"
documentation = "https://docs.rs/bevy_ratatui_camera"
categories = ["game-engines", "gui", "rendering", "command-line-interface"]
keywords = ["bevy", "ratatui", "terminal", "tui", "render"]
[dependencies]
bevy = "0.15.0"
crossterm = "0.28.0"
crossbeam-channel = "0.5.13"
ratatui = "0.29.0"
ratatui-image = "3.0.0"
bevy_ratatui = "0.7.0"
image = "0.25.5"
bevy_mod_debugdump = "0.12.0"
log = "0.4.22"
[dev-dependencies]
tui-logger = "0.14.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[lints.clippy]
type_complexity = "allow"