forked from junkdog/tachyonfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 804 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "tachyonfx"
version = "0.7.0-dev"
edition = "2021"
license = "MIT"
description = "A ratatui library for creating shader-like effects in TUIs."
repository = "https://github.com/junkdog/tachyonfx"
homepage = "https://github.com/junkdog/tachyonfx"
documentation = "https://docs.rs/tachyonfx"
readme = "README.md"
keywords = ["ratatui", "terminal", "effects", "UI", "TUI"]
categories = ["command-line-interface"]
authors = ["Adrian Papari <[email protected]>"]
exclude = ["images/*.gif", ".*"]
[dependencies]
bon = "2.1.0"
colorsys = "0.6.7"
ratatui = "0.28.1"
simple-easing = "1.0.1"
[dev-dependencies]
crossterm = "0.28.1"
[features]
std-duration = []
[[example]]
name = "open-window"
[[example]]
name = "basic-effects"
[[example]]
name = "tweens"
[[example]]
name = "fx-chart"