mirror of
https://github.com/pythops/bluetui.git
synced 2026-05-07 05:49:14 +08:00
30 lines
760 B
TOML
30 lines
760 B
TOML
[package]
|
|
name = "bluetui"
|
|
version = "0.6.0"
|
|
authors = ["Badr Badri <contact@pythops.com>"]
|
|
license = "GPL-3.0"
|
|
edition = "2024"
|
|
description = "TUI for managing bluetooth on Linux"
|
|
readme = "Readme.md"
|
|
homepage = "https://github.com/pythops/bluetui"
|
|
repository = "https://github.com/pythops/bluetui"
|
|
|
|
[dependencies]
|
|
async-channel = "2"
|
|
bluer = { version = "0.17", features = ["full"] }
|
|
crossterm = { version = "0.29", features = ["event-stream"] }
|
|
futures = "0.3"
|
|
ratatui = "0.29"
|
|
tokio = { version = "1", features = ["full"] }
|
|
dirs = "6"
|
|
toml = "0.9"
|
|
serde = { version = "1", features = ["derive"] }
|
|
clap = { version = "4", features = ["derive", "cargo"] }
|
|
terminal-light = "1"
|
|
tui-input = "0.12"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
codegen-units = 1
|
|
lto = "fat"
|