repository template for Rust projects
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: optimize setup of repository (#21)

authored by samanthanguyen.me and committed by

GitHub fc450cbe 43da2cfb

+16 -4
+5
.clippy.toml
··· 9 9 # - Repository: https://github.com/rust-lang/rust-clippy 10 10 # - Documentation: https://rust-lang.github.io/rust-clippy/master/index.html 11 11 # - Allowing/denying lints: https://github.com/rust-lang/rust-clippy#allowingdenying-lints 12 + 13 + allow-dbg-in-tests = true 14 + allow-expect-in-tests = true 15 + allow-print-in-tests = true 16 + allow-unwrap-in-tests = true
+1 -1
.github/workflows/docs.yml
··· 49 49 - name: Upload Pages artifact 50 50 uses: actions/upload-pages-artifact@v3 51 51 with: 52 - path: './target/doc' 52 + path: ./target/doc 53 53 deploy: 54 54 runs-on: ubuntu-latest 55 55 needs: build
+4
.github/workflows/main.yml
··· 25 25 branches: [ main ] 26 26 pull_request: 27 27 28 + concurrency: 29 + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} 30 + cancel-in-progress: true 31 + 28 32 jobs: 29 33 build: 30 34 name: build (${{ matrix.label }})
.github/workflows/security-audit.yml .github/workflows/audit.yml
+6 -3
crates/my-crate/Cargo.toml
··· 5 5 description = "{{desc}}" 6 6 readme = "README.md" 7 7 license = "MIT OR Apache-2.0" 8 + 8 9 edition = "2021" 9 10 rust-version = "1.76.0" 10 - # keywords = [] 11 - # categories = [] 12 - exclude = ["fuzz", "book", "benches"] 11 + 12 + keywords = [] 13 + categories = [] 14 + 15 + include = ["src", "LICENSE*"]