This repository has been archived on 2023-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
rclc/Cargo.toml

23 lines
637 B
TOML
Raw Normal View History

2023-02-10 21:34:22 +01:00
[package]
2023-02-11 00:20:43 +01:00
name = "rust_command_line_calculator"
2023-02-14 22:26:57 +01:00
version = "0.2.1"
2023-02-10 21:34:22 +01:00
edition = "2021"
2023-02-11 00:20:43 +01:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "GPL3"
description = "fast, scriptable calculator designed to run right in your shell"
readme = "README.md"
homepage = "https://github.com/PlexSheep/RustCommandLineCalculator"
repository = "https://github.com/PlexSheep/RustCommandLineCalculator"
keywords = ["cli", "calculator", "scriptable"]
categories = ["command-line-utilities"]
2023-02-10 21:34:22 +01:00
2023-02-11 00:20:43 +01:00
[[bin]]
name = "rclc"
path = "src/main.rs"
2023-02-10 21:34:22 +01:00
[dependencies]
2023-02-11 00:20:43 +01:00
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
2023-02-11 16:07:28 +01:00
num = "0.4.0"
regex = "1.7.1"