Add support for facilities

This commit is contained in:
Mihai Dinculescu
2022-10-15 22:51:57 +01:00
parent 307b83ea95
commit 6be70c8566
23 changed files with 535 additions and 137 deletions

View File

@@ -10,23 +10,29 @@ cd simconnect-sdk
## Receiving data
```bash
cargo run --bin basic
cargo run --bin data
```
## Using tracing
## Receiving data using tracing
```bash
RUST_LOG=info cargo run --bin basic_with_tracing
RUST_LOG=info cargo run --bin data_with_tracing
```
## Receiving data without the derive macro
```bash
cargo run --bin basic_without_macro
cargo run --bin data_without_macro
```
## Multiple objects
## Receiving data using multiple objects
```bash
cargo run --bin multiple_objects
cargo run --bin data_multiple_objects
```
## Receiving facilities from cache
```bash
cargo run --bin facilities
```