Skip to content

Commit

Permalink
Update version to 0.9.2 in Readme & doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed Feb 26, 2024
1 parent 2581843 commit 8fd9f58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ By default `serde` is disabled and `std` is enabled if you add `dlt_parse` as de

```toml
[dependencies]
dlt_parse = "0.9.1"
dlt_parse = "0.9.2"
```

If you additionally want `serde` support you will have to activate the `serde` feature:

```toml
[dependencies]
dlt_parse = { version = "0.9.1", features = ["serde"] }
dlt_parse = { version = "0.9.2", features = ["serde"] }
```

If you want to use the crate in `no_std` mode you will have to disable the default features:

```toml
[dependencies]
dlt_parse = { version = "0.9.1", default-features = false }
dlt_parse = { version = "0.9.2", default-features = false }
```

## What is dlt_parse?
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
//!
//! ```toml
//! [dependencies]
//! dlt_parse = "0.9.1"
//! dlt_parse = "0.9.2"
//! ```
//!
//! If you additionally want `serde` support you will have to activate the `serde` feature in your `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! dlt_parse = { version = "0.9.1", features = ["serde"] }
//! dlt_parse = { version = "0.9.2", features = ["serde"] }
//! ```
//!
//! If you want to use the crate in `no_std` mode you will have to disable the default features:
//!
//! ```toml
//! [dependencies]
//! dlt_parse = { version = "0.9.1", default-features = false }
//! dlt_parse = { version = "0.9.2", default-features = false }
//! ```
//!
//! # What is dlt_parse?
Expand Down

0 comments on commit 8fd9f58

Please sign in to comment.