From 777630c4990e2f634eaf89fcce86c0abaf03f44e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 18:07:41 +0200 Subject: [PATCH 1/4] bump mib dependencies --- satrs-mib/Cargo.toml | 4 ++-- satrs-mib/codegen/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/satrs-mib/Cargo.toml b/satrs-mib/Cargo.toml index e1c66ad..60d4daa 100644 --- a/satrs-mib/Cargo.toml +++ b/satrs-mib/Cargo.toml @@ -23,8 +23,8 @@ version = "1" optional = true [dependencies.satrs-core] -# version = "0.1.0-alpha.1" -git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" +version = "0.1.0-alpha.1" +# git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" branch = "main" # rev = "35e1f7a983f6535c5571186e361fe101d4306b89" diff --git a/satrs-mib/codegen/Cargo.toml b/satrs-mib/codegen/Cargo.toml index fc82778..1567183 100644 --- a/satrs-mib/codegen/Cargo.toml +++ b/satrs-mib/codegen/Cargo.toml @@ -20,8 +20,8 @@ quote = "1" proc-macro2 = "1" [dependencies.satrs-core] -# version = "0.1.0-alpha.1" -git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" +version = "0.1.0-alpha.1" +# git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" branch = "main" # rev = "35e1f7a983f6535c5571186e361fe101d4306b89" -- 2.43.0 From d20e205c32330611e166d54362dcdd10c810756e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 18:14:07 +0200 Subject: [PATCH 2/4] small fix --- satrs-mib/Cargo.toml | 2 +- satrs-mib/codegen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/satrs-mib/Cargo.toml b/satrs-mib/Cargo.toml index 60d4daa..a34d886 100644 --- a/satrs-mib/Cargo.toml +++ b/satrs-mib/Cargo.toml @@ -25,7 +25,7 @@ optional = true [dependencies.satrs-core] version = "0.1.0-alpha.1" # git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" -branch = "main" +# branch = "main" # rev = "35e1f7a983f6535c5571186e361fe101d4306b89" [dependencies.satrs-mib-codegen] diff --git a/satrs-mib/codegen/Cargo.toml b/satrs-mib/codegen/Cargo.toml index 1567183..cba83eb 100644 --- a/satrs-mib/codegen/Cargo.toml +++ b/satrs-mib/codegen/Cargo.toml @@ -22,7 +22,7 @@ proc-macro2 = "1" [dependencies.satrs-core] version = "0.1.0-alpha.1" # git = "https://egit.irs.uni-stuttgart.de/rust/sat-rs.git" -branch = "main" +# branch = "main" # rev = "35e1f7a983f6535c5571186e361fe101d4306b89" [dev-dependencies] -- 2.43.0 From e0b8280c41515fda37acb4584f30ac95c24126c1 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 18:21:10 +0200 Subject: [PATCH 3/4] bump README --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 585d3a9..5906c8b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,11 @@ sat-rs This is the repository of the sat-rs framework. Its primary goal is to provide re-usable components to write on-board software for remote systems like rovers or satellites. It is specifically written -for the special requirements for these systems. +for the special requirements for these systems. You can find an overview of the project and the +link to the [sat-rs book](https://documentation.irs.uni-stuttgart.de/projects/sat-rs/) +at the [IRS documentation website](https://documentation.irs.uni-stuttgart.de/sat-rs.html). +It is recommended to read the book first before delving into the example application and the +API documentation. A lot of the architecture and general design considerations are based on the [FSFW](https://egit.irs.uni-stuttgart.de/fsfw/fsfw) C++ framework which has flight heritage @@ -16,6 +20,9 @@ and [EIVE](https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and- This project currently contains following crates: +* [`satrs-book`](https://egit.irs.uni-stuttgart.de/rust/sat-rs/src/branch/main/satrs-book): + Primary information resource in addition to the API documentation. It is recommended to read + this first before delving into the example application and the API documentation. * [`satrs-core`](https://egit.irs.uni-stuttgart.de/rust/satrs-launchpad/src/branch/main/satrs-core): Core components of sat-rs. * [`satrs-example`](https://egit.irs.uni-stuttgart.de/rust/satrs-launchpad/src/branch/main/satrs-example): -- 2.43.0 From 466206e133f39f9a78a9054352640e1c16d1270b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 26 Sep 2023 18:23:59 +0200 Subject: [PATCH 4/4] better --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5906c8b..0dd8276 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,8 @@ sat-rs This is the repository of the sat-rs framework. Its primary goal is to provide re-usable components to write on-board software for remote systems like rovers or satellites. It is specifically written for the special requirements for these systems. You can find an overview of the project and the -link to the [sat-rs book](https://documentation.irs.uni-stuttgart.de/projects/sat-rs/) +link to the [more high-level sat-rs book](https://documentation.irs.uni-stuttgart.de/projects/sat-rs/) at the [IRS documentation website](https://documentation.irs.uni-stuttgart.de/sat-rs.html). -It is recommended to read the book first before delving into the example application and the -API documentation. A lot of the architecture and general design considerations are based on the [FSFW](https://egit.irs.uni-stuttgart.de/fsfw/fsfw) C++ framework which has flight heritage @@ -21,7 +19,8 @@ and [EIVE](https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and- This project currently contains following crates: * [`satrs-book`](https://egit.irs.uni-stuttgart.de/rust/sat-rs/src/branch/main/satrs-book): - Primary information resource in addition to the API documentation. It is recommended to read + Primary information resource in addition to the API documentation, hosted + [here](https://documentation.irs.uni-stuttgart.de/projects/sat-rs/). It can be useful to read this first before delving into the example application and the API documentation. * [`satrs-core`](https://egit.irs.uni-stuttgart.de/rust/satrs-launchpad/src/branch/main/satrs-core): Core components of sat-rs. -- 2.43.0