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

21 lines
607 B
TOML

[package]
name = "rust_command_line_calculator"
version = "0.1.1"
edition = "2021"
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"]
[[bin]]
name = "rclc"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"