Skip to content

Commit 798a35d

Browse files
committed
f: action wip
2 parents 22deda0 + d13247f commit 798a35d

File tree

5 files changed

+274
-48
lines changed

5 files changed

+274
-48
lines changed

.github/workflows/build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616
- uses: taiki-e/create-gh-release-action@v1
1717
with:
1818
# (optional) Path to changelog.
19+
<<<<<<< HEAD
1920
# changelog: CHANGELOG.md
21+
=======
22+
changelog: CHANGELOG.md
23+
>>>>>>> d13247f479d853832f107b1db5963787494deffc
2024
# (required) GitHub token for creating GitHub Releases.
2125
token: ${{ secrets.GITHUB_TOKEN }}
2226

@@ -38,7 +42,11 @@ jobs:
3842
with:
3943
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
4044
# Note that glob pattern is not supported yet.
45+
<<<<<<< HEAD
4146
bin: rae-cli
47+
=======
48+
bin: ...
49+
>>>>>>> d13247f479d853832f107b1db5963787494deffc
4250
# (optional) Target triple, default is host triple.
4351
# This is optional but it is recommended that this always be set to
4452
# clarify which target you are building for if macOS is included in

Cargo.lock

+128
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7+
clap = "4.5.20"
8+
const_format = "0.2.33"
79
html2text = { version = "0.13.2", features = ["css"] }
810
inquire = "0.7.5"
911
reqwest = { version = "0.12.8", features = ["blocking"] }

README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ A rather primitive tool to search and display spanish-spanish translations of wo
44

55
## Usage
66

7-
8-
Search for a word:
97
```sh
10-
rae-cli [word]
8+
buschar palabras en real Real Academia Española.
9+
10+
Usage: rae-cli <palabra>
11+
12+
Arguments:
13+
<palabra> palabra para buschar
14+
15+
Options:
16+
-h, --help Print help
17+
-V, --version Print version
1118
```
1219

1320
If the word if found information will be displayed

0 commit comments

Comments
 (0)