-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 816 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
rust-version = "1.86"
repository = "https://github.com/TODO/boba"
homepage = "https://github.com/TODO/boba"
keywords = ["tui", "terminal", "ratatui", "elm-architecture", "bubble-tea"]
categories = ["command-line-interface"]
[workspace.dependencies]
boba = { path = "crates/boba" }
boba-core = { path = "crates/boba-core" }
boba-widgets = { path = "crates/boba-widgets" }
ratatui = "0.30"
crossterm = { version = "0.29", features = ["event-stream"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
tokio-stream = "0.1"
thiserror = "2"
libc = "0.2"
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
pulldown-cmark = "0.12"
unicode-width = "0.2"