-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
50 lines (41 loc) · 1.07 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "tachyonfx"
version = "0.10.1"
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 <junkdog@angelhill.net>"]
exclude = ["images/*.gif", "docs/assets/*.gif", ".*"]
[dependencies]
bon = "3.3.2"
colorsys = "0.6.7"
ratatui = { version = "0.29", default-features = false }
simple-easing = "1.0.1"
web-time = { version = "1.1.0", optional = true }
[dev-dependencies]
crossterm = "0.28.1"
[features]
default = ["crossterm"]
web-time = ["dep:web-time"]
std-duration = []
sendable = []
crossterm = ["ratatui/crossterm"]
[[example]]
name = "minimal"
[[example]]
# for fx module docs
name = "effect-showcase"
[[example]]
name = "open-window"
[[example]]
name = "basic-effects"
[[example]]
name = "tweens"
[[example]]
name = "fx-chart"