Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FL03 committed Jul 8, 2024
0 parents commit 8c1bd09
Show file tree
Hide file tree
Showing 21 changed files with 827 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .artifacts/docs/QUICKSTART.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Quickstart

## Getting Started
21 changes: 21 additions & 0 deletions .artifacts/license/MIT.LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2024 Joe McCain III

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [FL03]
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
about: A generic issue template
assignees:
- FL03
labels: []
projects: ['@FL03/concision:features']
name: Generic Issue
title: ''
---

**Describe the proposal or feature that this issue is tracking.**

## Issues

- []

## Pull Requests
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
about: A formal proposal discussing any new features, changes, or improvements to the project.
assignees:
- FL03
labels: ['proposal']
name: Improvement Proposal
title: 'CNC-0000:'
---


### Resources

- [company](https://github.com/scattered-systems)
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/tracking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
about: Create a new tracking issue to track the progress of a proposal or feature.
labels: ['tracking']
name: Tracking Issue
title: 'Tracking Issue:'
---

_Describe the proposal or feature that this issue is tracking._

## Issues

- [ ]

## Pull Requests

- [ ]
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2

updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
- package-ecosystem: cargo
directory: /triad
schedule:
interval: weekly
43 changes: 43 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: clippy

on:
pull_request:
branches: [ main ]
release:
repository_dispatch:
types: [ clippy ]
schedule:
- cron: "30 21 * * 0" # 9:30pm UTC
workflow_dispatch:

permissions:
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
contents: read
security-events: write

jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt
- name: Run rust-clippy
run:
cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: Upload analysis
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
24 changes: 24 additions & 0 deletions .github/workflows/crates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: crates

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

env:
BASENAME: ${{ github.event.repository.name }}
CARGO_TERM_COLOR: always

on:
release:
types: [ published ]
repository_dispatch:
types: [ crates-io ]
workflow_dispatch:

jobs:
publish:
name: Publish (${{ github.event.repository.name }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo publish --all-features -v -p ${{ github.event.repository.name }} --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
69 changes: 69 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: rust

concurrency:
cancel-in-progress: false
group: ${{ github.event.repository.name }}-rust

env:
CARGO_TERM_COLOR: always
CRATE_BASENAME: ${{ github.event.repository.name }}

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
tags: [ v*.*.* ]
release:
types: [ created ]
repository_dispatch:
types: [ rust ]
schedule:
- cron: "30 21 * * 0" # Every Sunday at 9:30pm UTC
workflow_dispatch:

permissions: write-all

jobs:
build:
name: Build
strategy:
matrix:
platform: [ ubuntu-latest ]
toolchain: [ stable, nightly ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: setup (rustup)
run: |
rustup default ${{ matrix.toolchain }}
rustup update
- name: build (workspace)
run: cargo build --all-features -r -v --workspace
- name: cache
uses: actions/cache@v4
with:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
~/.cargo/registry
~/.cargo/git
target/release
bench:
name: Benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup (rustup)
run: rustup default nightly && rustup update
- name: cargo (bench)
run: cargo bench --features full -v --workspace
test:
name: Test
strategy:
matrix:
toolchain: [ stable, nightly ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default ${{ matrix.toolchain }} && rustup update
- run: cargo test --features full -v --workspace
Loading

0 comments on commit 8c1bd09

Please sign in to comment.