File tree Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Expand file tree Collapse file tree 3 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ LICENSE-APACHE
12
12
LICENSE-MIT
13
13
Cargo.lock
14
14
.png
15
- scripts/ci/copyright-exclude
15
+ scripts/ci/copyright-exclude
16
+ tools/make-kani-release/license-notes.txt
Original file line number Diff line number Diff line change
1
+
2
+ This file contains an inventory of software (and their licenses) that are included as part of the Kani Rust Verifier.
3
+
4
+ kani: https://github.com/model-checking/kani
5
+ License: Apache-2.0 OR MIT
6
+
7
+ rustc: https://github.com/rust-lang/rust
8
+ License: Apache-2.0 OR MIT (plus some BSD)
9
+ More info: https://github.com/rust-lang/rust/blob/master/COPYRIGHT
10
+
11
+ cbmc: https://github.com/diffblue/cbmc
12
+ License: BSD-4-Clause
13
+ More info: https://github.com/diffblue/cbmc/blob/develop/LICENSE
14
+ Acknowledgement:
15
+ This product includes software developed by Daniel Kroening,
16
+ Edmund Clarke,
17
+ Computer Science Department, University of Oxford
18
+ Computer Science Department, Carnegie Mellon University
19
+
20
+ cbmc-viewer: https://github.com/model-checking/cbmc-viewer
21
+ License: Apache-2.0
22
+
23
+ colorama: https://github.com/tartley/colorama
24
+ License: BSD-3-Clause
25
+
26
+ voluptuous: https://github.com/alecthomas/voluptuous
27
+ License: BSD-3-Clause
28
+
29
+ jinja2: https://github.com/pallets/jinja
30
+ License: BSD-3-Clause
31
+
32
+ setuptools: https://github.com/pypa/setuptools
33
+ License: MIT
34
+
35
+ MarkupSafe: https://github.com/pallets/markupsafe
36
+ License: BSD-3-Clause
Original file line number Diff line number Diff line change @@ -101,6 +101,9 @@ fn bundle_kani(dir: &Path) -> Result<()> {
101
101
// 4. Record the exact toolchain we use
102
102
std:: fs:: write ( dir. join ( "rust-toolchain-version" ) , env ! ( "RUSTUP_TOOLCHAIN" ) ) ?;
103
103
104
+ // 5. Include a licensing note
105
+ cp ( Path :: new ( "tools/make-kani-release/license-notes.txt" ) , dir) ?;
106
+
104
107
Ok ( ( ) )
105
108
}
106
109
/// Copy CBMC files into `dir`
You can’t perform that action at this time.
0 commit comments