mirror of
https://github.com/NexVeridian/ark-invest-api-rust-data.git
synced 2025-09-01 17:39:11 +00:00
1.2.0
License
This commit is contained in:
parent
ae5c9ac098
commit
4063fa3c0f
7 changed files with 52 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
/.devcontainer
|
||||
/.github
|
||||
/.vscode
|
||||
/data
|
||||
/target
|
||||
|
|
14
.github/workflows/nextest.yml
vendored
14
.github/workflows/nextest.yml
vendored
|
@ -29,3 +29,17 @@ jobs:
|
|||
bins: cargo-nextest
|
||||
- name: Run tests
|
||||
run: cargo nextest run -E "all() - test(get_api) - kind(bin)"
|
||||
|
||||
clippy:
|
||||
name: Clippy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
# - uses: rui314/setup-mold@v1
|
||||
- name: install mold
|
||||
run: sudo apt-get install -y musl-tools musl-dev libssl-dev clang mold
|
||||
- uses: moonrepo/setup-rust@v1
|
||||
with:
|
||||
components: clippy
|
||||
- name: clippy
|
||||
run: cargo clippy
|
||||
|
|
0
.ignore
Normal file
0
.ignore
Normal file
11
CONTRIBUTING.md
Normal file
11
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Contributing code
|
||||
- Make sure the test pass
|
||||
- Run `cargo clippy --fix --allow-dirty`
|
||||
|
||||
# License
|
||||
All code in this repository is dual-licensed under either [License-MIT](./LICENSE-MIT) or [LICENSE-APACHE](./LICENSE-Apache) at your option. This means you can select the license you prefer.
|
||||
|
||||
[Why dual license](https://github.com/bevyengine/bevy/issues/2373)
|
||||
|
||||
# Your contributions
|
||||
Any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
|
21
LICENSE-MIT
Normal file
21
LICENSE-MIT
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2023 Elijah McMorris (NexVeridian)
|
||||
|
||||
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.
|
|
@ -60,3 +60,8 @@ Run tests with `cargo t`
|
|||
|
||||
Remove the cargo cache for buildkit with `docker builder prune --filter type=exec.cachemount`
|
||||
|
||||
# License
|
||||
All code in this repository is dual-licensed under either [License-MIT](./LICENSE-MIT) or [LICENSE-APACHE](./LICENSE-Apache) at your option. This means you can select the license you prefer.
|
||||
|
||||
[Why dual license](https://github.com/bevyengine/bevy/issues/2373)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue