Skip to content

Commit 18e9d85

Browse files
committed
udpate readme and metadata
1 parent 79f6427 commit 18e9d85

2 files changed

Lines changed: 16 additions & 10 deletions

File tree

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Exercise downloader for https://rustplatform.com/
55

66
### Quickstart
77

8-
- install the exercise downloader directly from GitHub, open a terminal and run:
8+
- install the exercise downloader, open a terminal and run:
99
```shell
10-
cargo install --git https://github.com/PyBites-Open-Source/pybites_rust.git
10+
cargo install pybites-rust-download
1111
```
1212
- `cd` to the directory where you want to save the exercises
1313
- run the downloader (free exercises only):
@@ -56,20 +56,18 @@ make download-exercises
5656
5757
<details><summary>(Open to see some output examples ...)</summary>
5858
59-
Using `cargo` to install from GitHub.
59+
Using `cargo` to install from crates.io.
6060
6161
```shell
62-
➜ cargo install --git https://github.com/PyBites-Open-Source/pybites_rust.git
63-
Updating git repository `https://github.com/PyBites-Open-Source/pybites_rust.git`
64-
Installing pybites-rust-download v0.1.2 (https://github.com/PyBites-Open-Source/pybites_rust.git#d1afb2ec)
62+
➜ cargo install pybites-rust-download
63+
Installing pybites-rust-download v0.1.4
6564
6665
(...)
6766
68-
69-
Compiling pybites-rust-download v0.1.2 (/my/home/.cargo/git/checkouts/pybites_rust-b497f94da89af8aa/d1afb2e/excercise_downloader)
67+
Compiling pybites-rust-download v0.1.4
7068
Finished `release` profile [optimized] target(s) in 15.61s
7169
Installing /my/home/.cargo/bin/pybites-rust-download
72-
Installed package `pybites-rust-download v0.1.2 (https://github.com/PyBites-Open-Source/pybites_rust.git#d1afb2ec)` (executable `pybites-rust-download`) /15.8s
70+
Installed package `pybites-rust-download v0.1.4` (executable `pybites-rust-download`)
7371
7472
7573
```
@@ -118,4 +116,4 @@ Downloading the exercises from Pybites Rust (rustplatform.com) ✅
118116
119117
### Credits
120118
121-
Originally created by [Mark Greene](https://github.com/markgreene74).
119+
Originally created by [Giuseppe Cunsolo](https://github.com/markgreene74).

exercise_downloader/Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
name = "pybites-rust-download"
33
version = "0.1.4"
44
edition = "2024"
5+
authors = ["Bob Belderbos", "Giuseppe Cunsolo"]
6+
description = "Exercise downloader for the PyBites Rust platform (rustplatform.com)"
7+
license = "MIT"
8+
repository = "https://github.com/PyBites-Open-Source/pybites_rust"
9+
homepage = "https://rustplatform.com/"
10+
readme = "../README.md"
11+
keywords = ["pybites", "rust", "exercises"]
12+
categories = ["command-line-utilities"]
513

614
[dependencies]
715
reqwest = { version="0.12.23" , features = ["blocking", "json"]}

0 commit comments

Comments
 (0)