This commit is contained in:
grechkagk 2024-05-28 11:45:09 +00:00
parent b7b5825b90
commit e9ba4f7c0a
2 changed files with 18 additions and 0 deletions

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "calc"
authors = ["Grechka GK"]
version = "0.1.0"
edition = "2021"
[dependencies]
colored = "2.1.0"

10
makefile Normal file
View File

@ -0,0 +1,10 @@
all: clean build
build:
cargo build --release
run:
cargo run --release
clean:
cargo clean
rm -rf target/