Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05dca8f

Browse files
celinvaljaisnan
andauthoredJun 4, 2024
Add contest book (rust-lang#6)
Add initial book and a workflow to build / deploy the book. I also created a few other configurations that we were missing. Co-authored-by: Jaisurya Nanduri <91620234+jaisnan@users.noreply.github.com>
1 parent 838f888 commit 05dca8f

File tree

4 files changed

+79
-0
lines changed

4 files changed

+79
-0
lines changed
 

‎.github/CODEOWNERS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Copyright Kani Contributors
2+
# SPDX-License-Identifier: Apache-2.0 OR MIT
3+
4+
* @model-checking/kani-devs

‎.github/PULL_REQUEST_TEMPLATE.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
> Please add a description of your PR.
2+
> If this is a solution to an open challenge, please explain your solution.
3+
>
4+
> Don't forget to check our book to ensure your solution satisfy the overall
5+
> requirements as well as the challenge success criteria.
6+
>
7+
8+
Resolves #ISSUE-NUMBER
9+
10+
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.

‎.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Copyright Kani Contributors
2+
# SPDX-License-Identifier: Apache-2.0 OR MIT
3+
4+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

‎.gitignore

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Copyright Kani Contributors
2+
# SPDX-License-Identifier: Apache-2.0 OR MIT
3+
4+
## File system
5+
.DS_Store
6+
desktop.ini
7+
8+
## Editor
9+
*.swp
10+
*.swo
11+
Session.vim
12+
.cproject
13+
.idea
14+
*.iml
15+
.vscode
16+
.project
17+
.favorites.json
18+
.settings/
19+
*.orig
20+
*.rej
21+
22+
## Build
23+
/book/
24+
/build/
25+
/target
26+
*.rlib
27+
*.rmeta
28+
*.mir
29+
30+
## Temporary files
31+
*~
32+
\#*
33+
\#*\#
34+
.#*
35+
36+
## Python
37+
__pycache__/
38+
*.py[cod]
39+
*$py.class
40+
41+
## Node
42+
node_modules
43+
package-lock.json
44+
45+
# Tools
46+
## Kani
47+
*.out
48+
49+
50+
# Added by cargo
51+
#
52+
# already existing elements were commented out
53+
54+
#/target

0 commit comments

Comments
 (0)
Failed to load comments.