9569c9a9e7
style(standard_library_types): stray line break
2021-04-29 23:31:26 +02:00
f78c480208
fix(cli): Move long text strings into constants.
2021-04-27 17:14:54 -04:00
8794b40bc6
Merge branch 'correct-small-typo' of github.com:martinhartxyz/rustlings into correct-small-typo
2021-04-27 21:12:44 +02:00
86cc85295a
fix: Correct small typo in exercises/conversions/from_str.rs
2021-04-27 21:11:40 +02:00
166a53946c
Correct small typo in exercises/conversions/from_str.rs
2021-04-27 20:22:13 +02:00
91530f5716
Merge pull request #736 from maartentibau/quiz1_add_explicit_test_40
...
chore: Update quiz1.rs add explicit test for 40
2021-04-27 10:20:50 +02:00
9b8de65525
fix(intro1): Add compiler error explanation.
2021-04-26 20:28:17 -04:00
650b1dee54
chore: Update quiz1.rs add explicit test for 40
2021-04-25 19:02:50 +02:00
21c9f44168
feat(intro): Add intro section.
2021-04-24 13:15:34 -04:00
7f0d2c2bf0
chore(iterators5): Minor formatting improvements.
2021-04-24 12:42:06 -04:00
6b6dc9dd48
Merge pull request #731 from rust-lang/all-contributors/add-stoiandan
...
docs: add stoiandan as a contributor
2021-04-24 17:36:48 +02:00
3a9ec4192d
docs: update .all-contributorsrc [skip ci]
2021-04-24 15:36:39 +00:00
4f7dbbd2c3
docs: update README.md [skip ci]
2021-04-24 15:36:38 +00:00
8c37db1a23
Merge pull request #730 from stoiandan/main
...
updated README.md; specify need for admin rights
2021-04-24 17:36:19 +02:00
c6b7ad8878
updated README.md; specify need for admin rights
2021-04-24 18:32:13 +03:00
4a384cae4a
docs(option): improve further information
2021-04-24 12:12:49 +02:00
84461c20cb
release: 4.4.0
4.4.0
2021-04-24 11:57:00 +02:00
3cddda56fc
Merge pull request #725 from Zerotask/add-hint-corresponding-readme
...
chore(watch): add hint for the exercises README.md
2021-04-24 11:46:25 +02:00
37f3069a67
Merge pull request #724 from Zerotask/update-dependencies
...
chore(deps): update cargo dependencies
2021-04-24 11:45:56 +02:00
2b2fbe918e
Merge pull request #723 from Zerotask/update-exercises-readme
...
docs(exercises): consistent excersises README.md files
2021-04-24 11:45:37 +02:00
cf42ddc449
chore(watch): add hint for the exercises README.md
...
rustlings watch will now show an additional hint for the corresponding README.me
2021-04-23 20:28:55 +02:00
eefa656232
chore(deps): update cargo dependencies
2021-04-23 20:07:32 +02:00
249ad44cc0
docs(exercises): updated all exercises readme files
...
all exercises readme files now have a unified structure and a description
2021-04-23 19:54:31 +02:00
54804e344d
Merge pull request #721 from Zerotask/add-further-help-for-generics3
...
docs(generics): add bounds help
2021-04-23 15:05:00 +02:00
1c334de6fd
Merge pull request #718 from Zerotask/add-further-help-to-error-excersis
...
docs(errors): add additional help for Result/Boxing
2021-04-23 15:04:47 +02:00
f253103a31
docs(generics): add bounds help
...
add help for bounds provided by the rust by example book
2021-04-22 22:11:04 +02:00
1120db57a6
docs(errors): add additional help for Result/Boxing
...
add additional help information provided by the rust by example book
2021-04-22 21:32:29 +02:00
afa661cff4
Merge pull request #715 from rust-lang/feat/declap
...
feat: Replace clap with argh
2021-04-21 16:33:07 +02:00
347f30bd86
fix(main): Let find_exercise work with borrows
2021-04-21 16:21:56 +02:00
127773f3f5
Merge pull request #717 from rust-lang/all-contributors/add-bmacer
...
docs: add bmacer as a contributor
2021-04-21 14:50:37 +02:00
8d0490bd70
docs: update .all-contributorsrc [skip ci]
2021-04-21 12:50:27 +00:00
293dfb35d5
docs: update README.md [skip ci]
2021-04-21 12:50:26 +00:00
81be404487
feat(arc1): Add more details to description and hint ( #710 )
...
Co-authored-by: bmacer <bmacer@cisco.com >
Co-authored-by: marisa <mokou@fastmail.com >
Co-authored-by: Roberto Vidal <vidal.roberto.j@gmail.com >
2021-04-21 14:50:03 +02:00
6177b6e126
chore: Fix integration tests
2021-04-21 14:47:53 +02:00
79cc657917
Merge pull request #646 from apogeeoak/iterator
...
Added iterators5.rs exercise.
2021-04-21 10:10:50 +02:00
7928122fce
feat: Replace clap with argh
...
I’ve been wanting to do this for a while, but always procrastinated on it. We’ve been using Clap since the 2.0 rewrite, but Clap is known to be a fairly heavy library. Since Rustlings is usually peoples’ first contact with a Rust compilation, I think it’s in our best interests that this complation is as fast as possible. In effect, replacing Clap with the smaller, structopt-style `argh` reduces the amount of crates needing to be compiled from 82 to 60.
I also think this makes the code way easier to read, we don’t need to use Clap’s methods anymore, but can switch over to using pure Rust methods, e.g., switches are booleans, options are Option<String>s or the like, and subcommands are just structs.
2021-04-21 10:08:26 +02:00
9c88ea9126
Improved iterators5.rs explanation.
2021-04-20 18:55:04 -04:00
2b766ef9f9
Merge pull request #648 from apogeeoak/iterator2
...
Moved iterators2.rs errors out of tests.
2021-04-20 11:24:10 +02:00
bd3d9ac9d5
Merge pull request #649 from apogeeoak/iterator3
...
Enabled iterators3.rs to run without commented out tests.
2021-04-20 11:22:39 +02:00
aa0db8379c
Merge pull request #714 from rust-lang/all-contributors/add-hongshaoyang
...
docs: add hongshaoyang as a contributor
2021-04-20 11:19:49 +02:00
eadd41a9ec
docs: update .all-contributorsrc [skip ci]
2021-04-20 09:19:39 +00:00
fab2eb9833
docs: update README.md [skip ci]
2021-04-20 09:19:38 +00:00
6bd791f2f4
fix(structs): Add 5.3 to structs/README ( #652 )
...
Co-authored-by: Shao Yang Hong <shaoyang.hong@ninjavan.co >
2021-04-20 11:19:24 +02:00
ec5f80dce1
Merge pull request #713 from rust-lang/all-contributors/add-k12ish
...
docs: add k12ish as a contributor
2021-04-20 11:18:32 +02:00
65cdc856ae
docs: update .all-contributorsrc [skip ci]
2021-04-20 09:18:23 +00:00
472f61485e
docs: update README.md [skip ci]
2021-04-20 09:18:22 +00:00
b4de659438
fix(option2): Rename uninformative variables ( #675 )
...
Renaming uninformative names like `optional_value`, `value`, `optional_values_vec` and `value` helps users distinguish between the two parts of the task.
2021-04-20 11:18:05 +02:00
a37a8818c8
Merge pull request #712 from rust-lang/all-contributors/add-arthas168
...
docs: add arthas168 as a contributor
2021-04-20 11:16:25 +02:00
bdf01aa174
docs: update .all-contributorsrc [skip ci]
2021-04-20 09:16:16 +00:00
a941c69f09
docs: update README.md [skip ci]
2021-04-20 09:16:15 +00:00