Files
piglet/Cargo.toml
dependabot[bot] 7435af3708 Update itertools requirement from 0.12 to 0.14
Updates the requirements on [itertools](https://github.com/rust-itertools/itertools) to permit the latest version.
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-itertools/itertools/compare/v0.12.0...v0.14.0)

---
updated-dependencies:
- dependency-name: itertools
  dependency-version: 0.14.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-10 02:35:12 +00:00

48 lines
947 B
TOML

[package]
name = "piglet"
version = "0.1.0"
edition = "2021"
authors = ["Your Name"]
description = "Animated and colorful figlet wrapper with motion effects"
license = "MIT"
repository = "https://github.com/valknarthing/piglet"
[dependencies]
# CLI
clap = { version = "4.4", features = ["derive", "cargo"] }
# Color handling
csscolorparser = "0.6"
palette = "0.7"
# Animation & Interpolation
# scirs2-interpolate = "0.1.0-rc.2" # Not needed, using custom easing functions
# Terminal manipulation
crossterm = "0.27"
# Async runtime (for timing and signal handling)
tokio = { version = "1.35", features = ["time", "rt-multi-thread", "macros", "signal", "sync"] }
# Process execution
which = "5.0"
# Parsing
nom = "7.1"
regex = "1.10"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Utilities
itertools = "0.14"
lazy_static = "1.4"
rand = "0.8"
[dev-dependencies]
pretty_assertions = "1.4"
[[bin]]
name = "piglet"
path = "src/main.rs"