forked from grouzen/framework-tool-tui
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 936 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 936 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
[package]
name = "framework-tool-tui"
version = "0.8.0"
edition = "2021"
description = "TUI for controlling and monitoring Framework Computers hardware built in Rust"
license = "MIT"
repository = "https://github.com/grouzen/framework-tool-tui"
authors = ["Michael Nedokushev <michael.nedokushev@gmail.com>"]
[dependencies]
ratatui = "0.29"
crossterm = { version = "0.28.1", features = ["event-stream"] }
anyhow = "1.0"
framework_lib = { git = "https://github.com/FrameworkComputer/framework-system.git", package = "framework_lib" }
smbios-lib = { git = "https://github.com/FrameworkComputer/smbios-lib.git", branch = "no-std", default-features = false }
color-eyre = "0.6.5"
tokio = { version = "1.47.1", features = ["full"] }
futures = "0.3.31"
tui-popup = "0.6.0"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
dirs = "5.0"
[target.'cfg(unix)'.dependencies]
uzers = { version = "0.12.1", default-features = false }