diff --git a/README.md b/README.md index b8c14fe..e8d425f 100644 --- a/README.md +++ b/README.md @@ -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.8.0" +dlt_parse = "0.8.2" ``` If you additionally want `serde` support you will have to activate the `serde` feature: ```toml [dependencies] -dlt_parse = { version = "0.8.0", features = ["serde"] } +dlt_parse = { version = "0.8.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.8.0", default-features = false } +dlt_parse = { version = "0.8.2", default-features = false } ``` ## What is dlt_parse?