Skip to content

Commit

Permalink
release: 0.1.2 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
guuzaa authored Sep 30, 2024
1 parent 3ccb193 commit 9b250c7
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 19 deletions.
57 changes: 40 additions & 17 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@
"tasks": [
{
"label": "cargo build",
"type": "shell",
"command": "cargo build -r",
"type": "cargo",
"command": "build",
"args": [
"-r"
],
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [
"$rustc"
],
"presentation": {
"echo": true,
"reveal": "always",
Expand All @@ -17,12 +23,15 @@
},
{
"label": "cargo check",
"type": "shell",
"command": "cargo check",
"type": "cargo",
"command": "check",
"group": {
"kind": "build",
"kind": "test",
"isDefault": false
},
"problemMatcher": [
"$rustc"
],
"presentation": {
"echo": true,
"reveal": "always",
Expand All @@ -31,8 +40,8 @@
},
{
"label": "cargo clean",
"type": "shell",
"command": "cargo clean",
"type": "cargo",
"command": "clean",
"group": {
"kind": "build",
"isDefault": false
Expand All @@ -45,12 +54,15 @@
},
{
"label": "cargo run",
"type": "shell",
"command": "cargo run",
"type": "cargo",
"command": "run",
"group": {
"kind": "build",
"isDefault": false
},
"problemMatcher": [
"$rustc"
],
"presentation": {
"echo": true,
"reveal": "always",
Expand All @@ -59,12 +71,15 @@
},
{
"label": "cargo test",
"type": "shell",
"command": "cargo test",
"type": "cargo",
"command": "test",
"group": {
"kind": "build",
"kind": "test",
"isDefault": false
},
"problemMatcher": [
"$rustc"
],
"presentation": {
"echo": true,
"reveal": "always",
Expand All @@ -73,12 +88,20 @@
},
{
"label": "cargo clippy",
"type": "shell",
"command": "cargo clippy -- -D warnings",
"type": "cargo",
"command": "clippy",
"args": [
"--",
"-D",
"warnings"
],
"group": {
"kind": "build",
"kind": "test",
"isDefault": false
},
"problemMatcher": [
"$rustc"
],
"presentation": {
"echo": true,
"reveal": "always",
Expand All @@ -87,8 +110,8 @@
},
{
"label": "cargo fmt",
"type": "shell",
"command": "cargo fmt -v",
"type": "cargo",
"command": "fmt",
"group": {
"kind": "build",
"isDefault": false
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "tc"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "A simple and efficient token count program."
authors = ["guza <[email protected]>"]
repository = "https://github.com/guuzaa/tc"
license = "MIT"
readme = "README.md"

[dependencies]
clap = { version = "4.3", features = ["derive"] }
Expand Down

0 comments on commit 9b250c7

Please sign in to comment.