-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
28 lines (27 loc) · 809 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
[package]
name = "krui"
version = "0.0.2"
authors = ["Jonathan Foucher <jfoucher@gmail.com>"]
description = "Klipper Remote User Interface. A TUI for the Moonraker API on Klipper enabled 3D printers."
license = "MIT"
edition = "2021"
repository = "https://github.com/jfoucher/krui"
keywords = ["3Dprinting", "klipper", "moonraker", "tui"]
categories = ["command-line-utilities"]
exclude = [
"img/*",
]
[dependencies]
crossterm = "0.27.0"
tui = { package = "ratatui", version = "0.23.0" }
websocket = "0.26.5"
rand = "0.8.5"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
flume = { version = "0.11", default-features = false, features = ["spin", "select"] }
itertools = "0.11"
log4rs = "1.2"
log = "0.4"
chrono = "0.4"
viuer = "0.6"
curl = { version = "0.4", features = ["http2"] }