This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2024-06-27 21:27:18 +02:00
|
|
|
[package]
|
|
|
|
name = "libpt-cli"
|
|
|
|
publish.workspace = true
|
|
|
|
version = "0.1.0"
|
|
|
|
edition.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
description.workspace = true
|
|
|
|
readme.workspace = true
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
keywords.workspace = true
|
|
|
|
categories.workspace = true
|
|
|
|
|
2024-06-28 00:05:54 +02:00
|
|
|
[features]
|
|
|
|
default = ["log"]
|
2024-06-28 00:40:52 +02:00
|
|
|
log = ["dep:libpt-log", "dep:log"]
|
2024-06-28 00:05:54 +02:00
|
|
|
|
2024-06-27 21:27:18 +02:00
|
|
|
[dependencies]
|
2024-06-28 00:05:54 +02:00
|
|
|
anyhow.workspace = true
|
2024-06-27 22:36:13 +02:00
|
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
2024-06-27 21:27:18 +02:00
|
|
|
comfy-table = "7.1.1"
|
|
|
|
console = "0.15.8"
|
|
|
|
dialoguer = "0.11.0"
|
|
|
|
indicatif = "0.17.8"
|
2024-06-28 00:40:52 +02:00
|
|
|
libpt-log = { workspace = true, optional = true }
|
|
|
|
log = { version = "0.4.21", optional = true }
|