Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 1 addition & 125 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ astarte-message-hub-proto = { workspace = true }
astarte-message-hub-proto-mock = { workspace = true }
async-trait = { workspace = true }
color-eyre = { workspace = true }
env_logger = { workspace = true }
eyre = { workspace = true }
mockall = { workspace = true }
mockito = { workspace = true }
pretty_assertions = { workspace = true }
Expand Down Expand Up @@ -143,7 +143,6 @@ bytes = "1.5.0"
cfg-if = "1.0.0"
chrono = "0.4.20"
color-eyre = "0.6.3"
env_logger = "0.11.0"
eyre = "0.6.12"
flate2 = "1.0.0"
flume = "0.11.0"
Expand Down Expand Up @@ -182,3 +181,13 @@ webpki-roots = "0.26.0"
# Transitive dependencies
litemap = "=0.7.4"
zerofrom = "=0.1.5"

[[example]]
name = "msghub_client"
path = "examples/message_hub_client/main.rs"
required-features = ["message-hub", "derive"]

[[example]]
name = "object_datastream"
path = "examples/object_datastream/main.rs"
required-features = ["derive"]
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ Quick links:
- [API documentation](https://docs.rs/astarte-device-sdk/latest/astarte_device_sdk/).
- [Astarte documentation](https://docs.astarte-platform.org/latest/001-intro_user.html) for more information regarding Astarte.
- [Get started](https://docs.rs/astarte-device-sdk/latest/astarte_device_sdk/_docs/_get_started/index.html) for a guide on how to use the SDK functionalities.
- [Connect to the Astarte MessageHub](https://docs.rs/astarte-device-sdk/latest/astarte_device_sdk/_docs/_connect_to_the_astarte_msghub/index.html) tutorial.
- [OS requirements](https://github.com/astarte-platform/astarte-device-sdk-rust/tree/master/docs/os-requirements.md) for system libraries.

## Use the library

You can add the library tro your project with:
You can add the library to your project with:

```sh
cargo new astarte-project && cd astarte-project
Expand Down
Loading
Loading