forked from model-checking/kani
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
78 lines (68 loc) · 1.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Copyright Kani Contributors
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
name = "kani-verifier"
version = "0.56.0"
edition = "2021"
description = "A bit-precise model checker for Rust."
readme = "README.md"
keywords = ["model-checking", "verification"]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/model-checking/kani"
documentation = "https://model-checking.github.io/kani/"
homepage = "https://github.com/model-checking/kani"
# N.B. Cargo.* is included automatically:
include = ["/src", "/build.rs", "/rust-toolchain.toml", "/LICENSE-*", "/README.md", "/CHANGELOG.md"]
[dependencies]
anyhow = "1"
home = "0.5"
os_info = { version = "3", default-features = false }
[[bin]]
name = "kani"
path = "src/bin/kani.rs"
[[bin]]
name = "cargo-kani"
path = "src/bin/cargo_kani.rs"
[profile.release]
strip = "debuginfo"
# Below is the workspace (vs above is "kani-verifier" crate) config:
[workspace]
members = [
"library/kani",
"library/std",
"tools/compiletest",
"tools/build-kani",
"tools/kani-cov",
"tools/scanner",
"kani-driver",
"kani-compiler",
"kani_metadata",
"library/kani_core",
]
# This indicates what package to e.g. build with 'cargo build' without --workspace
default-members = [
".",
"kani-driver",
"kani-compiler",
]
exclude = [
"build",
"charon",
"target",
# dependency tests have their own workspace
"tests/kani-dependency-test/dependency3",
# cargo kani tests should also have their own workspace
"tests/cargo-kani",
"tests/perf",
"tests/cargo-ui",
"tests/slow",
"tests/std-checks",
"tests/assess-scan-test-scaffold",
"tests/script-based-pre",
"tests/script-based-pre/build-cache-bin/target/new_dep",
"tests/script-based-pre/build-cache-dirty/target/new_dep",
"tests/script-based-pre/verify_std_cmd/tmp_dir/target/kani_verify_std",
]
[workspace.lints.clippy]
too_long_first_doc_paragraph = "allow"