-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 922 Bytes
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
# FILE: Cargo.toml - Cargo manifest for ratatui-notifications library
# VERSION: 1.1.0
# WCTX: OFPF migration
# CLOG: Updated example name from notification_demo to demo
[package]
name = "ratatui-notifications"
version = "0.1.0"
edition = "2021"
description = "Animated notification system for Ratatui terminal applications"
license = "MIT"
repository = "https://github.com/your-org/ratatui-notifications"
keywords = ["ratatui", "tui", "notifications", "terminal", "animation"]
categories = ["command-line-interface", "gui"]
[dependencies]
ratatui = { version = "0.30.0", features = ["crossterm"] }
crossterm = "0.29.0"
thiserror = "2.0.12"
log = "0.4"
chrono = "0.4"
[dev-dependencies]
color-eyre = "0.6"
env_logger = "0.11"
unicode-width = "0.1"
[[example]]
name = "demo"
path = "examples/demo.rs"
required-features = []
# FILE: Cargo.toml - Cargo manifest for ratatui-notifications library
# END OF VERSION: 1.1.0