diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b4f54b..d1f6170 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,4 +25,4 @@ jobs: cargo fix cargo clippy cargo build - cd example_shadow && cargo run example_shadow \ No newline at end of file + cd example_shadow && cargo run \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 7e0f42f..62ccb61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shadow-rs" -version = "0.4.0" +version = "0.4.1" authors = ["baoyachi "] edition = "2018" description = "A build script write by Rust" diff --git a/README.md b/README.md index beff85e..21b6a45 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ fn main() -> shadow_rs::SdResult<()> { ## step 3 In your project find `bin` rust file.It's usually `main.rs`, you can find `[bin]` file with `Cargo.toml`,then add with below config -The `shadow!(build)` with `build` config,add Rust build mod in your project. Also you also use other name that you want configuration. +The `shadow!(build)` with `build` config,add Rust build mod in your project. You can also replace it(build) with other name. ```rust #[macro_use] diff --git a/src/lib.rs b/src/lib.rs index f404f2e..a02e439 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -66,7 +66,7 @@ //! //! ## step 3 //! In your project find `bin` rust file.It's usually `main.rs`, you can find `[bin]` file with `Cargo.toml`,then add with below config -//! The `shadow!(build)` with `build` config,add Rust build mod in your project. Also you also use other name that you want configuration. +//! The `shadow!(build)` with `build` config,add Rust build mod in your project. You can also replace it(build) with other name. //! //! ```ignore //! #[macro_use]