Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhakansson committed Dec 14, 2023
1 parent c0f2dbf commit 4457c96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtcm-rs"
version = "0.7.0"
version = "0.8.0"
authors = ["Martin Håkansson <martinhakansson@yahoo.com>"]
categories = ["encoding", "no-std"]
description = "Encoding/decoding of RTCM v. 3"
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Moreover, the library is `no_std` compatible and doesn't rely on dynamic memory
- `serde`: For adding support for serialization and deserialization. To enable this, add the following to the rtcm-rs dependency in your Cargo.toml file:

```toml
rtcm-rs = { version = "0.7.0", features=["serde"] }
rtcm-rs = { version = "0.8.0", features=["serde"] }
```

- Selective message support: To minimize the library size by supporting only certain RTCM messages. For instance, to only support messages 1004 and 1005, update your Cargo.toml as follows:

```toml
rtcm-rs = { version = "0.7.0", default-features=false, features=["msg1004","msg1005"] }
rtcm-rs = { version = "0.8.0", default-features=false, features=["msg1001","msg1005"] }
```

- `test_gen`: This feature is used exclusively for generating tests during library development and is not necessary for library usage.
Expand All @@ -37,7 +37,7 @@ To add rtcm-rs to your project, add the following to your `Cargo.toml` file:

```toml
[dependencies]
rtcm-rs = "0.7.0"
rtcm-rs = "0.8.0"
```

Remember that hyphenated crate names translate to underscored crate names in rust source code, i.e. `rtcm_rs` for this crate. For instance, add the following to import from the prelude:
Expand Down Expand Up @@ -158,6 +158,7 @@ In this third example, we demonstrate how to encode an RTCM message. We start by
| 0.5.x | 1019 1020 1041 1042 1044 1045 1046 | Ephemeris messages |
| 0.6.x | 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 | SSR messages |
| 0.7.x | 1021 1022 1023 1024 1025 1026 1027 | Transformation and projection messages |
| 0.8.x | 1014 1015 1016 1017 1031 1034 1035 1037 1038 1039 | Network RTK corrections messages |

## Roadmap to Version 1.0
- [ ] Full coverage of all RTCM version 3 messages
Expand All @@ -168,7 +169,7 @@ In this third example, we demonstrate how to encode an RTCM message. We start by
- [x] SSR messages
- [x] Transformation parameters messages
- [x] Projection parameters messages
- [ ] Network RTK corrections messages
- [x] Network RTK corrections messages
- [ ] Legacy Observable messages
- [ ] Stabilize API (may break some backward compatibility)
- [ ] Consistent message data types (and message field names)
Expand All @@ -178,4 +179,4 @@ In this third example, we demonstrate how to encode an RTCM message. We start by

## License

MIT or Apache-2.0
MIT or Apache-2.0

0 comments on commit 4457c96

Please sign in to comment.