-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c91a355
commit 1f83f42
Showing
5 changed files
with
22 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ version = 1 | |
name = "rust" | ||
enabled = true | ||
|
||
[analyzers.meta] | ||
msrv = "stable" | ||
[analyzers.meta] | ||
msrv = "stable" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
// Copyright © 2023 Hash (HSH) library. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
//! The main function of the build script. | ||
//! This is the main function for the build script. | ||
//! | ||
//! This function is executed when building the crate and performs certain tasks | ||
//! necessary for the build process. | ||
//! | ||
//! It prints a "cargo:rerun-if-changed" directive to indicate that the build | ||
//! should be re-run if the "build.rs" file is changed. | ||
//! Currently, it only instructs Cargo to re-run this build script if `build.rs` is changed. | ||
fn main() { | ||
// println!("cargo:rerun-if-changed=src/lib.rs"); | ||
// Avoid unnecessary re-building. | ||
println!("cargo:rerun-if-changed=build.rs"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters