20 lines
410 B
TOML
20 lines
410 B
TOML
[package]
|
|
name = "bevy-tasks-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "bevy-tasks"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
bevy-tasks-core = { path = "../bevy-tasks-core" }
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
colored = "2.0"
|
|
anyhow = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
fs_extra = "1.3"
|
|
tokio = { workspace = true }
|
|
rpassword = "5.0"
|