Initial commit: Piglet - Animated figlet wrapper
Add complete Rust implementation with:
- 20+ motion effects (fade, slide, scale, typewriter, wave, bounce, etc.)
- 18+ easing functions (linear, quad, cubic, elastic, back, bounce)
- Color support (CSS4 colors, hex codes, gradients)
- Figlet integration with custom fonts and options
- Cross-platform support (Linux, macOS, Windows)
- Comprehensive CI/CD workflows
- Full test suite with integration tests
- Documentation (README.md, CLAUDE.md)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 01:53:26 +01:00
|
|
|
[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
|
2025-11-09 03:00:20 +01:00
|
|
|
# scirs2-interpolate = "0.1.0-rc.2" # Not needed, using custom easing functions
|
Initial commit: Piglet - Animated figlet wrapper
Add complete Rust implementation with:
- 20+ motion effects (fade, slide, scale, typewriter, wave, bounce, etc.)
- 18+ easing functions (linear, quad, cubic, elastic, back, bounce)
- Color support (CSS4 colors, hex codes, gradients)
- Figlet integration with custom fonts and options
- Cross-platform support (Linux, macOS, Windows)
- Comprehensive CI/CD workflows
- Full test suite with integration tests
- Documentation (README.md, CLAUDE.md)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 01:53:26 +01:00
|
|
|
|
|
|
|
|
# Terminal manipulation
|
|
|
|
|
crossterm = "0.27"
|
|
|
|
|
|
2025-11-09 06:38:15 +01:00
|
|
|
# Async runtime (for timing and signal handling)
|
|
|
|
|
tokio = { version = "1.35", features = ["time", "rt-multi-thread", "macros", "signal", "sync"] }
|
Initial commit: Piglet - Animated figlet wrapper
Add complete Rust implementation with:
- 20+ motion effects (fade, slide, scale, typewriter, wave, bounce, etc.)
- 18+ easing functions (linear, quad, cubic, elastic, back, bounce)
- Color support (CSS4 colors, hex codes, gradients)
- Figlet integration with custom fonts and options
- Cross-platform support (Linux, macOS, Windows)
- Comprehensive CI/CD workflows
- Full test suite with integration tests
- Documentation (README.md, CLAUDE.md)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 01:53:26 +01:00
|
|
|
|
|
|
|
|
# Process execution
|
|
|
|
|
which = "5.0"
|
|
|
|
|
|
|
|
|
|
# Parsing
|
|
|
|
|
nom = "7.1"
|
|
|
|
|
regex = "1.10"
|
|
|
|
|
|
|
|
|
|
# Error handling
|
|
|
|
|
anyhow = "1.0"
|
|
|
|
|
thiserror = "1.0"
|
|
|
|
|
|
|
|
|
|
# Utilities
|
|
|
|
|
itertools = "0.12"
|
|
|
|
|
lazy_static = "1.4"
|
|
|
|
|
rand = "0.8"
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
pretty_assertions = "1.4"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "piglet"
|
|
|
|
|
path = "src/main.rs"
|