-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 771 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
35
[package]
name = "teapot"
version = "0.1.0-alpha.1"
edition = "2024"
rust-version = "1.92"
authors = ["InferaDB Team"]
description = "A Rust-native terminal UI framework following the Elm Architecture, inspired by Bubble Tea"
license = "MIT OR Apache-2.0"
repository = "https://github.com/inferadb/teapot"
readme = "README.md"
keywords = ["tui", "terminal", "cli", "teapot", "elm"]
categories = ["command-line-interface", "gui"]
[dependencies]
# Builder pattern macros
bon = "3.8"
# Error handling
thiserror = "2"
# Terminal backend
crossterm = "0.29"
# Unicode handling
unicode-width = "0.2"
# Optional serialization
serde = { version = "1", features = ["derive"], optional = true }
[features]
default = []
serde = ["dep:serde"]
[lints.rust]
unsafe_code = "deny"