repository template for Rust projects

chore: simplify crate template name (#38)

authored by samanthanguyen.me and committed by GitHub 83df9374 9382592b

Changed files
+4 -4
.github
workflows
crates
my-crate
+1 -1
.github/workflows/main.yml
··· 178 178 strategy: 179 179 matrix: 180 180 include: 181 - - crate: my-crate 181 + - crate: my_crate 182 182 steps: 183 183 - name: Checkout repository 184 184 uses: actions/checkout@v4
+1 -1
Cargo.lock
··· 3 3 version = 4 4 4 5 5 [[package]] 6 - name = "my-crate" 6 + name = "my_crate" 7 7 version = "0.1.0"
+1 -1
README.md
··· 26 26 - `{{author}}` - The author's name of the library. For example, this could be a username, nickname, or real name. 27 27 - `{{email}}` - The author's email address. This is optional and can be deleted. 28 28 - `neoncitylights/rust` - Replace this with the name of your repository. 29 - - `my-crate`, `my_crate` - Replace this with the name of your crate. 29 + - `my_crate` - Replace this with the name of your crate. 30 30 31 31 ## Configure 32 32 | Tool | File path | Reference |
+1 -1
crates/my-crate/Cargo.toml
··· 1 1 [package] 2 - name = "my-crate" 2 + name = "my_crate" 3 3 version = "0.1.0" 4 4 description = "{{desc}}" 5 5 include = ["src", "LICENSE*"]