Skip to content

Commit 8aad3d7

Browse files
committed
Add REUSE.toml file for source code of rustc-perf
1 parent 7965c10 commit 8aad3d7

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

LICENSES/MIT.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) <year> <copyright holders>
4+
5+
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:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
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.

REUSE.toml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version = 1
2+
3+
# Reuse annotations file.
4+
#
5+
# This file controls how reuse-tool finds copyright and license notices within
6+
# source files. As the tool has a habit of picking up random uses of the word
7+
# 'Copyright' within source code, and because it will complain that other files
8+
# do not contain any specific copyright and license notifications, we usually
9+
# just set a blanket license and copyright notice for a whole sub-tree at a
10+
# time.
11+
#
12+
# See https://reuse.software and https://github.com/fsfe/reuse-tool for more
13+
# details. We currently use reuse-tool version 4.0.3.
14+
15+
[[annotations]]
16+
path = [
17+
"ci/**",
18+
"collector/**",
19+
"database/**",
20+
"docs/**",
21+
"intern/**",
22+
"site/**",
23+
"triage/**",
24+
".github/**",
25+
"Cargo.lock",
26+
"Cargo.toml",
27+
"Dockerfile",
28+
"LICENSE.md",
29+
"README.md",
30+
"REUSE.toml",
31+
".gitignore",
32+
".dockerignore"
33+
]
34+
SPDX-FileCopyrightText = "The Rust Project Developers (see https://thanks.rust-lang.org)"
35+
SPDX-License-Identifier = "MIT"

0 commit comments

Comments
 (0)