-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
36 lines (30 loc) · 841 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
[package]
name = "kalc"
description = "a complex numbers, 2d/3d graphing, arbitrary precision, vector/matrix, cli calculator with real-time output and support for units"
license = "GPL-3.0-only"
authors = ["bgkillas <[email protected]>"]
readme = "README.md"
keywords = ["cli", "calculator"]
categories = ["command-line-interface", "command-line-utilities", "mathematics"]
repository = "https://github.com/bgkillas/kalc"
rust-version = "1.79.0"
version = "1.3.3"
edition = "2021"
[profile.release]
lto = true
strip = true
panic = "abort"
[profile.dev]
opt-level = 1
[dependencies]
fastrand = "2.0.2"
rug = "1.24.1"
crossterm = "0.28.1"
dirs = "5.0.1"
[target.'cfg(not(unix))'.dependencies]
term_size = "0.3.2"
[target.'cfg(unix)'.dependencies]
libc = "0.2.153"
[dependencies.gmp-mpfr-sys]
version = "1.6.4"
features = ["force-cross"]