-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.06 KB
/
Cargo.toml
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
36
37
38
39
40
[package]
name = "smartcalc-tui"
authors = ["Aaron Ross <[email protected]>"]
version = "1.0.8"
edition = "2018"
license = "MIT"
description = "Terminal UI for erhanbaris/smartcalc"
repository = "https://github.com/superhawk610/smartcalc-tui"
documentation = "https://github.com/superhawk610/smartcalc-tui"
homepage = "https://github.com/superhawk610/smartcalc-tui"
readme = "README.md"
keywords = ["calculator", "tui"]
categories = ["mathematics", "science", "command-line-utilities", "development-tools"]
exclude = [".github/", "assets/"]
[lib]
name = "smartcalc_tui"
path = "src/lib.rs"
[[bin]]
name = "smartcalc"
path = "src/bin/main.rs"
[dependencies]
crossterm = "0.23.0"
colored = "2.0.0"
linefeed = "0.6.0"
crossbeam-channel = "0.5.1"
parking_lot = "0.12.0"
num-format = { version = "0.4.0", features = ["with-system-locale"] }
const_format = "0.2.19"
localzone = "0.2.0"
chrono = "0.4.19"
chrono-tz = "0.6.1"
smartcalc = "1.0.8"
[dependencies.log]
version = "0.4.14"
# disable logging so it doesn't interrupt tui
features = ["max_level_off", "release_max_level_off"]