marisa
427ec6b2e4
Merge pull request #790 from rust-lang/all-contributors/add-jazzplato
...
docs: add jazzplato as a contributor for code
2021-06-30 12:06:16 +02:00
marisa
633303d4b8
Merge pull request #787 from kolbma/exercise-iterator3-hint
...
chore: Update hint of iterators3
2021-06-29 13:49:17 +02:00
marisa
0bd459dcac
Merge pull request #788 from rust-lang/all-contributors/add-kolbma
...
docs: add kolbma as a contributor for doc
2021-06-29 12:46:49 +02:00
marisa
c8c1b87a01
Merge pull request #786 from kolbma/git-clone-release-tag
...
docs: Faster git clone command
2021-06-29 12:46:28 +02:00
marisa
de6c45ad24
Merge pull request #779 from rust-lang/all-contributors/add-hyperparabolic
...
docs: add hyperparabolic as a contributor for code
2021-06-24 14:18:02 +02:00
marisa
a3ea37b76e
Merge pull request #771 from tlyu/iterators5-trait-tweak
...
fix(iterators5): derive Clone, Copy
2021-06-24 14:17:05 +02:00
marisa
ec63cadadb
Merge pull request #772 from tlyu/errors-rework
...
feature: improve error_handling exercises
2021-06-24 14:12:34 +02:00
marisa
84d8305730
Merge pull request #778 from rust-lang/all-contributors/add-kayuapi
...
docs: add kayuapi as a contributor for content
2021-06-24 14:10:33 +02:00
marisa
dd9b2ddc89
Merge pull request #773 from kayuapi/patch-1
...
fix(variables5): confine the answer further
2021-06-24 14:10:02 +02:00
marisa
a2f0401c4c
Merge pull request #762 from tlyu/move-semantics5-fixes
...
fix: move_semantics5 hints
2021-05-23 15:41:56 +02:00
marisa
4da9e7ee29
Merge pull request #758 from rust-lang/all-contributors/add-sateeshkumarb
...
docs: add sateeshkumarb as a contributor
2021-05-17 14:11:15 +02:00
marisa
809ec2ce01
Merge pull request #755 from tlyu/dyn-error-hints
...
fix(try_from_into, from_str): hints for dyn Error
2021-05-17 14:09:44 +02:00
marisa
dbb2624403
Merge pull request #751 from juanprq/main
...
fix: remove trailing whitespace
2021-05-13 17:20:47 +02:00
marisa
7cd635fa84
Merge pull request #740 from rust-lang/all-contributors/add-PiDelport
...
docs: add PiDelport as a contributor
2021-05-01 12:12:51 +02:00
marisa
e1be594fdd
Merge pull request #739 from PiDelport/patch-1
...
style(standard_library_types): stray line break
2021-05-01 12:12:29 +02:00
marisa
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
marisa
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
marisa
8c37db1a23
Merge pull request #730 from stoiandan/main
...
updated README.md; specify need for admin rights
2021-04-24 17:36:19 +02:00
mokou
84461c20cb
release: 4.4.0
2021-04-24 11:57:00 +02:00
marisa
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
marisa
37f3069a67
Merge pull request #724 from Zerotask/update-dependencies
...
chore(deps): update cargo dependencies
2021-04-24 11:45:56 +02:00
marisa
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
marisa
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
marisa
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
marisa
afa661cff4
Merge pull request #715 from rust-lang/feat/declap
...
feat: Replace clap with argh
2021-04-21 16:33:07 +02:00
mokou
347f30bd86
fix(main): Let find_exercise work with borrows
2021-04-21 16:21:56 +02:00
marisa
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
mokou
6177b6e126
chore: Fix integration tests
2021-04-21 14:47:53 +02:00
marisa
79cc657917
Merge pull request #646 from apogeeoak/iterator
...
Added iterators5.rs exercise.
2021-04-21 10:10:50 +02:00
mokou
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
marisa
2b766ef9f9
Merge pull request #648 from apogeeoak/iterator2
...
Moved iterators2.rs errors out of tests.
2021-04-20 11:24:10 +02:00
marisa
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
marisa
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
marisa
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
marisa
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
marisa
3a06de71a8
Merge pull request #708 from Zerotask/list-command-added-to-readme
...
docs: added hint for rustlings list command
2021-04-20 11:10:38 +02:00
marisa
5e2b39a5c1
Merge pull request #711 from rust-lang/all-contributors/add-Zerotask
...
docs: add Zerotask as a contributor
2021-04-20 11:09:41 +02:00
marisa
e2ce9f42b5
Merge pull request #707 from Zerotask/list-command-progress-info
...
feat(list): added progress info
2021-04-20 11:09:14 +02:00
marisa
9aeca3f97e
Merge pull request #692 from rust-lang/all-contributors/add-flakolefluk
...
docs: add flakolefluk as a contributor
2021-04-04 09:44:02 +02:00
marisa
a02b279750
chore: Provide a working Windows installation link
2021-03-23 09:10:40 +01:00
marisa
ece841f5ce
Merge pull request #680 from rust-lang/all-contributors/add-blerchy
...
docs: add blerchy as a contributor
2021-03-22 13:37:10 +01:00
marisa
b350945a16
Merge pull request #676 from blerchy/feat/no-emoji
...
Replace emojis when NO_EMOJI env variable present
2021-03-22 13:36:26 +01:00
marisa
1ef368a69d
Merge pull request #679 from rust-lang/new-install-urls
...
chore: Update install URLs
2021-03-21 16:35:44 +01:00
marisa
8dc587b01a
chore: Update install URLs
2021-03-21 16:34:21 +01:00