19 lines
503 B
TOML
19 lines
503 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
crossterm = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
owlen-core = { path = "../crates/owlen-core" }
|
|
owlen-tui = { path = "../crates/owlen-tui" }
|
|
ratatui = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|