-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 975 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 975 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
[package]
name = "too"
edition = "2021"
version = "0.2.0"
description = "too - a tui framework"
license = "MIT OR Apache-2.0"
authors = [ "museun <museun@users.noreply.github.com>" ]
documentation = "https://docs.rs/too"
repository = "https://github.com/museun/too"
readme = "README.md"
[features]
default = [ "terminal" ]
terminal = [ "dep:crossterm", "dep:flume" ]
profile = [ "dep:profiling", "profiling/profile-with-puffin" ] # TODO don't limit the crate to just puffins
sync = [ "dep:parking_lot" ]
[dependencies]
compact_str = "0.8.0"
unicode-segmentation = "1.12.0"
unicode-width = { version = "0.2.0", default-features = false }
str_indices = "0.4.4"
slotmap = "1.0.7"
flume = { version = "0.11.1", default-features = false, optional = true }
crossterm = { version = "0.28.1", default-features = false, features = [ "events", "windows" ], optional = true }
profiling = { version = "1.0.16", optional = true }
parking_lot = { version = "0.12.3", optional = true }