diff --git a/README.en.md b/README.en.md deleted file mode 100644 index 826acf82bb911fd37845932e9ff121bfca4835dc..0000000000000000000000000000000000000000 --- a/README.en.md +++ /dev/null @@ -1,36 +0,0 @@ -## opensource-intern - -#### Description -This repository stores code related to some cases involved in teaching operating systems in colleges and universities, including: software package formats, open source software supply chain security, operating systems, network programming, network security, network management and other directions. - -#### Software Architecture -Software architecture description - -#### Installation - -1. xxxx -2. xxxx -3. xxxx - -#### Instructions - -1. xxxx -2. xxxx -3. xxxx - -#### Contribution - -1. Clone the Fork repository to your account, and use the `git clone` command to clone the Fork repository to your local development environment. -2. `git checkout master` to the `master` branch, then commit. -3. Commit the code in the Fork repository and submit a Pull Request in the repository. -4. Create a new Pull Request and submit it. - - -#### Gitee Feature - -1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md -2. Gitee blog [blog.gitee.com](https://blog.gitee.com) -3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) -4. The most valuable open source project [GVP](https://gitee.com/gvp) -5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) -6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/cargo-sbom/.gitignore b/cargo-sbom/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..ae9ea50078ef99e806d95bb3ac4275a15df0c52f --- /dev/null +++ b/cargo-sbom/.gitignore @@ -0,0 +1,21 @@ +# Generated by Cargo +# will have compiled files and executables +/target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + + +#Added by cargo +# +#already existing elements are commented out + +/target +#**/*.rs.bk + +# IDE +.idea diff --git a/cargo-sbom/Cargo.toml b/cargo-sbom/Cargo.toml new file mode 100644 index 0000000000000000000000000000000000000000..4eab1f99d6c1201f0ded8ee5c6a97403df0cb03a --- /dev/null +++ b/cargo-sbom/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "cargo-sbom" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/cargo-sbom/src/main.rs b/cargo-sbom/src/main.rs new file mode 100644 index 0000000000000000000000000000000000000000..e7a11a969c037e00a796aafeff6258501ec15e9a --- /dev/null +++ b/cargo-sbom/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} diff --git a/rpm-specs/.keep b/rpm-specs/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391