From 7acff91e12eb84a9212520bbadf9c2d74c4a377e Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Mon, 3 Mar 2025 09:02:07 -0800 Subject: [PATCH] Remove version-sync dependency and tests `version-sync` depends on `url`. A patch version of `url` moved from `unicode-bidi` as a dep to the icu4x ecosystem which has a huge dep tree and an aggressive MSRV policy. To avoid maintenance churn, remove this dep and the associated tests. --- Cargo.toml | 9 --------- tests/version_numbers.rs | 9 --------- 2 files changed, 18 deletions(-) delete mode 100644 tests/version_numbers.rs diff --git a/Cargo.toml b/Cargo.toml index 305f3dc4..883de7ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,15 +24,6 @@ default = ["std"] std = ["alloc"] alloc = [] -[dev-dependencies] - -# Check that crate versions are properly updated in documentation and code when -# bumping the version. -[dev-dependencies.version-sync] -version = "0.9.3" -default-features = false -features = ["markdown_deps_updated", "html_root_url_updated"] - [package.metadata.docs.rs] # This sets the default target to `x86_64-unknown-linux-gnu` and only builds # that target. `strftime-ruby` has the same API and code on all targets. diff --git a/tests/version_numbers.rs b/tests/version_numbers.rs deleted file mode 100644 index 288592d0..00000000 --- a/tests/version_numbers.rs +++ /dev/null @@ -1,9 +0,0 @@ -#[test] -fn test_readme_deps() { - version_sync::assert_markdown_deps_updated!("README.md"); -} - -#[test] -fn test_html_root_url() { - version_sync::assert_html_root_url_updated!("src/lib.rs"); -}