From 63b8f474fe6b4959baf42a7bd0af8370049dc27d Mon Sep 17 00:00:00 2001
From: Per Lindgren <per.lindgren@ltu.se>
Date: Sun, 15 Oct 2017 12:49:14 +0200
Subject: [PATCH] test10

---
 Ecosystem.md | 8 ++++++--
 README.md    | 7 +++++--
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/Ecosystem.md b/Ecosystem.md
index a16baac..fdc4820 100644
--- a/Ecosystem.md
+++ b/Ecosystem.md
@@ -26,8 +26,12 @@ We suggest a linux or OSX development environment, though Rust related tools are
 
 # Rustup
 
-The [rustup](https://www.rustup.rs/), tool manager allows you to manage multiple tool chain installations. Nightly tool chains allow for the development of libraries and applations including `unsafe` code (which will be necessary for the later excercises). For some tools to work (rls//)
+The [rustup](https://www.rustup.rs/), tool manager allows you to manage multiple tool chain installations. Nightly tool chains allow for the development of libraries and applations including `unsafe` code (which will be necessary for the later excercises). For some tools to work (rls/rustfmt) you need to install the Rust sources. By default your Rust related tools will be stored in `~/.rustup`.
 
 # Rust Crates
 
-A crate is a unit of compilation, being either a library or an application. Crates are managed (compiled, installed, removed, updated, etc.) by the [cargo](https://crates.io/) tool.
\ No newline at end of file
+A crate is a unit of compilation, being either a library or an application. Crates are managed (compiled, installed, removed, updated, etc.) by the [cargo](https://crates.io/) tool. 
+
+`*.toml` files are used throughtout Rust developments for giving configuration (meta) information. The `Cargo.lock` file shows the cashed dependencies (you may delete the `Cargo.lock` file to force updating dependencies, `cargo clean may not be enough).
+
+Dependencies (may) include a minimal version, eg `itm = "0.1.1"` indicates that at least version `0.1.1` in required (so `0.1.1`, `0.1.2`, `0.2.3` is Ok, while `0.1.0` will not suffice, and a version `1.0.0` would be considered a breaking change (major number changed) and not considered. Rust follows the [semver](http://semver.org/) versioning standard.
\ No newline at end of file
diff --git a/README.md b/README.md
index db91b0d..33ca02d 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 ## D7018E - Special Studies in Embedded Systems
 
 
-The course will be given as a self study course with a set of introductional seminars and accompanying mandatory assignments, followed by a larger assigmnent (project). The project can be carried out individually or in groups dependent on size. Grading will be individual, based on agreed requirements between the student and the teacher, showing understanding and abilities regarding (in order of introduction):
+The course will be given as a self study course with a set of introductional seminars and accompanying mandatory assignments, followed by a larger assigmnent (project). The project can be carried out individually or in groups dependent on size. Grading will be individual, based on agreed requirements between the student and the teacher, showing understanding and abilities regarding:
 
 1. The Rust ecosystem.
 
@@ -61,6 +61,9 @@ Teaching material will be made available through git (this project), build and r
 
 We encourage all sorts of collaborations in between the students. Rust is not the easiest language to learn, and we will cover a lot of ground. Use the seminars to try to get as much as possible by beig well prepared in order to succeed. We will use telegram as the main means of communictation and support from teachers as well as other fellow students, (this way information will reach everyone, keeping support as efficient as possible).
 
+# Course in detail
 
-<!-- It's very easy to make some words **bold** and other words *italic* with Markdown. You can even [link to Google!](http://google.com) -->
+1. [Contribution guidelines for this project](doc/Ecosystem.md)
+
+ It's very easy to make some words **bold** and other words *italic* with Markdown. You can even [link to Google!](http://google.com) 
 
-- 
GitLab