25 Commits

Author SHA1 Message Date
b85a34c1bb added last set of unittests
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-20 14:32:14 +01:00
c691e29070 unittests almost done
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-19 18:24:20 +01:00
7f53a88068 tests looking good
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-17 21:56:33 +01:00
9f16a86f7d bump all versions
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-17 20:58:50 +01:00
e1c0fbf49e add badges to main README
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-17 20:55:10 +01:00
86f6ed8b15 prepare satrs-shared release
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-17 20:53:37 +01:00
4588d00291 created baseline for tests
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-17 14:43:46 +01:00
9a761cc799 Merge branch 'move-some-requests' of egit.irs.uni-stuttgart.de:rust/sat-rs into move-some-requests
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-17 14:36:36 +01:00
5d51d40371 continue test verification handler 2024-02-17 14:36:22 +01:00
d7be5224f1 thats one hell of a test suite.. 2024-02-17 01:07:01 +01:00
51bccf32af fnished test verification helper 2024-02-17 00:21:30 +01:00
b84670048b Merge branch 'main' into move-some-requests
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-16 19:22:00 +01:00
931c37be7a start adding test helper for verification reporting
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-16 19:05:51 +01:00
53ba2e005b auto-formatting
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-16 18:53:03 +01:00
23fcd53b8a Merge remote-tracking branch 'origin/main' into move-some-requests
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-16 18:52:06 +01:00
7092c8cd41 fix tests
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-16 18:51:05 +01:00
3cb34cef58 add some more missing docs
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-16 17:59:35 +01:00
8ad21018f4 add goal structure for the example app
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-16 12:49:21 +01:00
0db24d22df no_std compatibility
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
2024-02-14 18:13:22 +01:00
5702e83df5 weird doc trickery
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-14 16:55:50 +01:00
79c22895e4 basic docs for action high-level modules
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-14 11:05:59 +01:00
f37417cd56 use local dependencies again
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-14 10:49:15 +01:00
def368ba78 Merge branch 'main' into move-some-requests
Some checks failed
Rust/sat-rs/pipeline/pr-main There was a failure building this commit
2024-02-13 18:21:40 +01:00
a5e5a1a5a0 First PUS handler abstraction with request mapping
Some checks are pending
Rust/sat-rs/pipeline/head Build started...
This is the first attempt of a generic PUS service abstraction where
the PUS telecommands need to be converted into targetted requests.
2024-02-13 18:19:45 +01:00
e426a7cef1 moved some requests
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
2024-02-13 11:05:59 +01:00
3 changed files with 1 additions and 8 deletions

View File

@ -1,7 +1,5 @@
<p align="center"> <img src="misc/satrs-logo.png" width="40%"> </p>
[![sat-rs website](https://img.shields.io/badge/sat--rs-website-darkgreen?style=flat)](https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/)
[![sat-rs book](https://img.shields.io/badge/sat--rs-book-darkgreen?style=flat)](https://absatsw.irs.uni-stuttgart.de/projects/sat-rs/book/)
[![Crates.io](https://img.shields.io/crates/v/satrs)](https://crates.io/crates/satrs)
[![docs.rs](https://img.shields.io/docsrs/satrs)](https://docs.rs/satrs)

View File

@ -17,11 +17,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- New `VerificationReportingProvider` abstraction to avoid relying on a concrete verification
reporting provider.
## Changed
- Verification reporter API timestamp arguments are not `Option`al anymore. Empty timestamps
can be passed by simply specifying the `&[]` empty slice argument.
# [v0.1.1] 2024-02-12
- Minor fixes for crate config `homepage` entries and links in documentation.

View File

@ -1,6 +1,6 @@
[package]
name = "satrs"
version = "0.2.0-rc.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.61"
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]