diff --git a/parser/README.md b/parser/README.md index a471b28..d9f12ad 100644 --- a/parser/README.md +++ b/parser/README.md @@ -17,7 +17,7 @@ Add the following to the Cargo.toml of your project: ```toml [dependencies] -yaml-rust2 = "0.7" +yaml-rust2 = "0.8" ``` Use `yaml_rust2::YamlLoader` to load YAML documents and access them as `Yaml` objects: diff --git a/parser/documents/2024-03-15-FirstRelease.md b/parser/documents/2024-03-15-FirstRelease.md index 7205fce..41aa642 100644 --- a/parser/documents/2024-03-15-FirstRelease.md +++ b/parser/documents/2024-03-15-FirstRelease.md @@ -96,7 +96,7 @@ Switching to `yaml-rust2` should be a very simple process. Change your `Cargo.to ```diff -yaml-rust = "0.4.4" -+yaml-rust2 = "0.6.0" ++yaml-rust2 = "0.8.0" ``` As for your code, you have one of two solutions: diff --git a/parser/src/lib.rs b/parser/src/lib.rs index 9ca9a45..5fc106b 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! yaml-rust2 = "0.7.0" +//! yaml-rust2 = "0.8.0" //! ``` //! //! # Examples diff --git a/parser/tools/gen_large_yaml/Cargo.toml b/parser/tools/gen_large_yaml/Cargo.toml index a70e779..d57bdea 100644 --- a/parser/tools/gen_large_yaml/Cargo.toml +++ b/parser/tools/gen_large_yaml/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -yaml-rust2 = { version = "0.7.0", path = "../../" } +yaml-rust2 = { path = "../.." } rand = { version = "0.8.5", features = [ "small_rng" ] } lipsum = "0.9.0"