-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (35 loc) · 878 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
39
[package]
name = "calc"
version = "0.4.1"
authors = ["Peter Goodspeed-Niklaus <[email protected]>"]
edition = "2021"
description = "CLI calculator app"
license = "GPL-3.0-only"
repository = "https://github.com/coriolinus/calc"
categories = [
"command-line-interface",
"command-line-utilities",
"mathematics",
]
keywords = ["calculator", "cli"]
[dependencies]
anyhow = { version = "1.0.75", optional = true }
clap = { version = "4.4.8", features = ["derive"], optional = true }
lalrpop-util = { version = "0.20.0", features = ["lexer"] }
lazy_static = "1.4.0"
num-runtime-fmt = "0.1"
regex = "1.10.2"
rustyline = { version = "12.0.0", optional = true }
thiserror = "1.0.50"
[build-dependencies]
lalrpop = "0.20.0"
[features]
default = ["cli"]
cli = [
"anyhow",
"clap",
"rustyline",
]
[[bin]]
name = "calc"
required-features = ["cli"]