Skip to content

Commit 326114f

Browse files
mavlink: Update to 0.13.2
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent c93fd57 commit 326114f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

mavlink-bindgen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mavlink-bindgen"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
license = "MIT/Apache-2.0"
66
description = "Library used by rust-mavlink."

mavlink-bindgen/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The output dir will contain a `mod.rs` file with each dialect in its own file lo
5555
Add to your Cargo.toml:
5656

5757
```toml
58-
mavlink-bindgen = "0.13.1"
58+
mavlink-bindgen = "0.13.2"
5959
```
6060

6161
Add a `build/main.rs` or `build.rs` to your project if it does not already exist. Then add the following to the `main` function to generate the code:

mavlink-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mavlink-core"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = [
55
"Todd Stellanova",
66
"Michal Podhradsky",

mavlink/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "mavlink"
4-
version = "0.13.1"
4+
version = "0.13.2"
55
authors = [
66
"Todd Stellanova",
77
"Michal Podhradsky",
@@ -19,15 +19,15 @@ edition = "2018"
1919
rust-version = "1.65.0"
2020

2121
[build-dependencies]
22-
mavlink-bindgen = { version = "0.13.1", default-features = false }
22+
mavlink-bindgen = { version = "0.13.2", default-features = false }
2323

2424
[[example]]
2525
name = "mavlink-dump"
2626
path = "examples/mavlink-dump/src/main.rs"
2727
required-features = ["ardupilotmega"]
2828

2929
[dependencies]
30-
mavlink-core = { version = "0.13.1", default-features = false }
30+
mavlink-core = { version = "0.13.2", default-features = false }
3131
num-traits = { workspace = true, default-features = false }
3232
num-derive = { workspace = true }
3333
bitflags = { workspace = true }

0 commit comments

Comments
 (0)