-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) 路 1.64 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (46 loc) 路 1.64 KB
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
51
52
53
[workspace]
members = ["crates/*"]
# Versions in one place, so `nobubbles` and `norimel` can never disagree about which crossterm
# is driving the terminal.
[workspace.dependencies]
colorgrad = { version = "0.8.0", default-features = false, features = ["std", "preset"] }
crossterm = "0.29.0"
ratatui = { version = "0.30.2", default-features = false }
unicode-segmentation = "1.13.3"
unicode-width = "0.2.2"
[package]
name = "nobubbles"
version = "0.1.1"
edition = "2024"
description = "Reactive TUI for Rust: signals instead of messages, inline and fullscreen"
license = "MIT"
repository = "https://github.com/romancitodev/nobubbles"
[dependencies]
# Unused, and staying (D-011). Optional so the 67 crates it drags are not the default build.
compio = { version = "0.17.0", features = ["macros"], optional = true }
crossterm.workspace = true
eyre = "0.6"
fuzzy-matcher = "0.3.7"
norimel = { path = "crates/norimel", version = "0.1.1", features = ["ratatui"] }
ratatui = { workspace = true, features = ["crossterm"] }
tachyonfx = { version = "0.25.1", optional = true }
unicode-segmentation.workspace = true
[features]
default = []
# Everything below, for running the examples: `cargo run --example download --features full`.
full = ["fx", "gradient"]
# The reserved async backend (D-011). Nothing uses it yet.
compio = ["dep:compio"]
# `Ctx::effect`, over tachyonfx. Pulls bon and prettyplease.
fx = ["dep:tachyonfx"]
# r铆mel's colour ramps. Pulls colorgrad.
gradient = ["norimel/gradient"]
[[example]]
name = "deep-thought"
required-features = ["gradient"]
[[example]]
name = "download"
required-features = ["gradient"]
[[example]]
name = "fx"
required-features = ["full"]