From c38dee91f027a84d99dd81c45c59abd71ce2c77c Mon Sep 17 00:00:00 2001 From: MPThLee-Bot <39119533+MPThLee-Bot@users.noreply.github.com> Date: Wed, 10 May 2023 22:45:18 +0900 Subject: [PATCH] chore(cargo): pin dependency --- Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f60883e..b9f9e9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,9 @@ panic = "abort" panic = "abort" [dependencies] -byteorder = "^1.4" +byteorder = "~1.4.3" [dev-dependencies] -pretty_assertions = "^1.1.0" \ No newline at end of file +# Pretty Assertions should not be over 1.3.0 as its MSRV is 1.54.0. +# Yes, It's pretty old. But this libary follows byteorder's MSRV only. (Rust 1.14.1 - Released on Feb 27, 2020) +pretty_assertions = "~1.2.1" \ No newline at end of file