-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 969 Bytes
/
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
[package]
name = "rpn-rs"
version = "0.1.6"
authors = ["Nathaniel Clark"]
edition = "2021"
keywords = [ "fltk", "rpn", "calculator", "tui" ]
categories = [ "gui", "mathematics", "command-line-utilities" ]
license = "GPL-2.0-only"
readme = "README.md"
[dependencies]
clap = { version = "4", features = ["derive", "wrap_help"] }
itertools = "0.14"
#libmat = "0.3"
libmat = { git = "https://github.com/utopiabound/libmat", branch = "rref" }
log = "0.4"
num-traits = "0.2"
regex = "1"
rug = { version = "1", features = ["num-traits"] }
strum_macros = "0.26"
# GUI
# Use this line to just build with fltk statically
fltk = "^1.5"
# Use system libs for zlib, png and jpeg
#fltk = { version = "^1.5", features = ["system-zlib", "use-ninja"] }
# Disable wayland as it fails codecov checks
copypasta = { version = "0.10", default-features = false, features = [ "x11" ] }
# CLI & TUI
html2text = "0.13"
# CLI
rustyline = "15"
# (Rata)TUI
crossterm = "0.28"
ratatui = "0.29"