Skip to content

Commit cadaac0

Browse files
committed
chore: setting up repo
Signed-off-by: Dr Maxim Orlovsky <[email protected]>
0 parents  commit cadaac0

24 files changed

+1965
-0
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [dr-orlovsky, UBIDECO]

.github/workflows/build.yml

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- 'v[0-9]+[.0-9]*'
9+
pull_request:
10+
branches:
11+
- master
12+
- develop
13+
- 'v[0-9]+[.0-9]*'
14+
15+
env:
16+
CARGO_TERM_COLOR: always
17+
18+
jobs:
19+
default:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: dtolnay/rust-toolchain@stable
24+
- run: cargo check --workspace
25+
no-default:
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: actions/checkout@v4
29+
- uses: dtolnay/rust-toolchain@stable
30+
- run: cargo check --workspace --no-default-features
31+
features:
32+
runs-on: ubuntu-latest
33+
strategy:
34+
fail-fast: false
35+
matrix:
36+
feature: [ stl, serde ]
37+
steps:
38+
- uses: actions/checkout@v4
39+
- uses: dtolnay/rust-toolchain@stable
40+
- name: Feature ${{matrix.feature}}
41+
run: cargo check --workspace --no-default-features --features=${{matrix.feature}}
42+
- name: Feature ${{matrix.feature}}
43+
run: cargo check --workspace --features=${{matrix.feature}}
44+
platforms:
45+
runs-on: ${{ matrix.os }}
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ]
50+
steps:
51+
- uses: actions/checkout@v4
52+
- uses: dtolnay/rust-toolchain@stable
53+
- name: Platform ${{matrix.os}}
54+
run: cargo check --workspace --all-features # we skip test targets here to be sure that the main library can be built
55+
toolchains:
56+
runs-on: ubuntu-latest
57+
strategy:
58+
fail-fast: false
59+
matrix:
60+
toolchain: [ nightly, beta, stable, 1.77.0 ]
61+
steps:
62+
- uses: actions/checkout@v4
63+
- uses: dtolnay/rust-toolchain@master
64+
with:
65+
toolchain: ${{matrix.toolchain}}
66+
- name: Toolchain ${{matrix.toolchain}}
67+
run: cargo +${{matrix.toolchain}} check --workspace --all-targets --all-features

.github/workflows/codecov.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Codecov
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- 'v\d+\.*'
9+
pull_request:
10+
branches:
11+
- master
12+
- develop
13+
- 'v\d+(\.\d+)*'
14+
15+
env:
16+
CARGO_TERM_COLOR: always
17+
18+
jobs:
19+
codecov:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: dtolnay/rust-toolchain@nightly
24+
with:
25+
components: llvm-tools-preview
26+
- uses: taiki-e/install-action@cargo-llvm-cov
27+
- uses: taiki-e/install-action@nextest
28+
- name: Collect coverage data (including doctests)
29+
run: |
30+
cargo +nightly llvm-cov --no-report nextest --workspace --all-features
31+
cargo +nightly llvm-cov --no-report --doc --workspace --all-features
32+
cargo +nightly llvm-cov report --doctests --lcov --output-path lcov.info
33+
- name: Upload coverage data to codecov
34+
uses: codecov/codecov-action@v4
35+
with:
36+
flags: rust
37+
files: lcov.info
38+
fail_ci_if_error: true
39+
token: ${{ secrets.CODECOV_TOKEN }}
40+
verbose: true

.github/workflows/lint.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Lints
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- develop
8+
- 'v\d+(\.\d+)*'
9+
10+
env:
11+
CARGO_TERM_COLOR: always
12+
13+
jobs:
14+
fmt:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: dtolnay/rust-toolchain@nightly
19+
with:
20+
components: rustfmt
21+
- name: Formatting
22+
run: cargo +nightly fmt --all -- --check
23+
clippy:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: dtolnay/rust-toolchain@stable
28+
with:
29+
components: clippy
30+
- name: Formatting
31+
run: cargo clippy --workspace --all-features --all-targets -- -D warnings
32+
doc:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- uses: actions/checkout@v4
36+
- uses: dtolnay/rust-toolchain@nightly
37+
with:
38+
components: rust-docs
39+
- name: Formatting
40+
run: cargo +nightly doc --workspace --all-features
41+
typos:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- uses: actions/checkout@v4
45+
- uses: crate-ci/typos@master

.github/workflows/test.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- 'v\d+\.*'
9+
pull_request:
10+
branches:
11+
- master
12+
- develop
13+
- 'v\d+(\.\d+)*'
14+
15+
env:
16+
CARGO_TERM_COLOR: always
17+
18+
jobs:
19+
testing:
20+
runs-on: ${{ matrix.os }}
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
os: [ ubuntu-latest, macos-13, macos-latest, windows-latest ]
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: dtolnay/rust-toolchain@stable
28+
- name: Test ${{matrix.os}}
29+
run: cargo test --workspace --all-features --no-fail-fast
30+
wasm-testing:
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v4
34+
- uses: dtolnay/rust-toolchain@nightly
35+
- uses: jetli/[email protected]
36+
- name: Add wasm32 target
37+
run: rustup target add wasm32-unknown-unknown
38+
- name: Test in headless Chrome
39+
run: wasm-pack test --headless --chrome

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target
4+
5+
# These are backup files generated by rustfmt
6+
**/*.rs.bk
7+
8+
.idea
9+
10+
*.swp
11+
12+
/dep_test
13+
default*.profraw

.rustfmt.toml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
edition = "2021"
2+
style_edition = "2021"
3+
4+
max_width = 120
5+
array_width = 120
6+
attr_fn_like_width = 120
7+
comment_width = 100
8+
chain_width = 60
9+
fn_call_width = 120
10+
single_line_if_else_max_width = 120
11+
struct_lit_width = 60
12+
13+
fn_single_line = true
14+
format_code_in_doc_comments = true
15+
format_macro_matchers = true
16+
format_macro_bodies = true
17+
format_strings = true
18+
merge_derives = false
19+
overflow_delimited_expr = true
20+
reorder_modules = false
21+
use_field_init_shorthand = true
22+
use_try_shorthand = true
23+
wrap_comments = true
24+
where_single_line = true
25+
unstable_features = true
26+
27+
imports_granularity = "Module"
28+
group_imports = "StdExternalCrate"

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Change Log
2+
==========

CODE_OF_CONDUCT.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Code of Conduct
2+
3+
We do not apply any code of conduct expectations for contributors and
4+
maintainers in their live and behaviour outside the scope of this project.
5+
We believe that a restriction is the word of sin: free people write code, take
6+
their decisions and act in a way they will, taking responsibility for the
7+
consequences.
8+
9+
Moreover, we will try to protect the freedom of speech of contributors, and
10+
explicit distance from personal or public life of contributors, as long as
11+
they behave in a civil and productive way when contributing and interacting
12+
within the project, and will go to great lengths to not deny anyone
13+
participation.
14+
15+
Actions within the technical scope of the project (code quality, spamming etc),
16+
as well as interaction with other maintainers and contributors of course is
17+
a factor of the access to the project development and lifecycle. The decision in
18+
these cases will be made by the project maintainers, with the right of veto or
19+
overriding vote reserved for the original project author, Maxim Orlovsky.

0 commit comments

Comments
 (0)