-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
##
## Cargo.toml - Numbrs package metadata
## Copyright (C) 2022 Kian Kasad
##
## This file is part of Numbrs.
##
## Numbrs is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, version 3 of the License.
##
## Numbrs is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Numbrs. If not, see <https://www.gnu.org/licenses/>.
##
[package]
name = "numbrs"
description = "A text-based calculator written in Rust"
version = "1.4.1"
readme = "README.md"
repository = "https://github.com/kdkasad/numbrs"
license = "GPL-3.0"
authors = [
"Kian Kasad <[email protected]>",
]
categories = [
"command-line-utilities",
"mathematics",
"parser-implementations",
"science",
"value-formatting"
]
edition = "2021"
build = "build.rs"
[package.metadata]
copyright-years = "2022-2024"
[features]
debug = []
[dependencies]
num = "0.4.0"
once_cell = "1.17.0"
rustyline = "10.0.0"
strum = "0.24.1"
strum_macros = "0.24.3"
thiserror = "1.0.37"
[dev-dependencies]
pretty_assertions = "1.3.0"
[build-dependencies]
cargo_metadata = "0.15.0"
glob = "0.3.0"