From c12cd824cb301dfc8f52dd68a0125c0989049880 Mon Sep 17 00:00:00 2001 From: driftcell Date: Wed, 29 Oct 2025 09:52:55 +0800 Subject: [PATCH] Change build-dependencies to dev-dependencies in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 078e72b..961f026 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ GitHub Actions is powerful, but writing workflows can sometimes feel repetitive, To use **Rust GitHub Workflows** in your project, add it to your `Cargo.toml`: ```toml -[build-dependencies] +[dev-dependencies] gh-workflow = "*" # Add the latest version ``` @@ -35,7 +35,7 @@ Then you can start creating GitHub Actions in your [tests/ci.rs](https://github. - Add the following code to generate the GitHub Actions workflow: ```rust - use gh_workflows::*; + use gh_workflow::*; #[test] fn main() {