-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
89 lines (81 loc) · 1.59 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
79
80
81
82
83
84
85
86
87
88
89
[workspace]
resolver = "2"
members = [
"bench",
"build",
"cmd/compile",
"cmd/decode",
"cmd/interpret",
"cmd/minify",
"cmd/profile",
"cmd/repl",
"compiler",
"configuration",
"device",
"examples/embedded-script",
"examples/hot-reload",
"file",
"inexact",
"macro",
"macro-util",
"minifier",
"minifier_macro",
"module",
"native",
"process_context",
"profiler",
"r7rs",
"root",
"sac",
"time",
"util",
"vm",
"wasm",
]
[workspace.package]
edition = "2021"
keywords = ["interpreter", "language", "scheme"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/raviqqe/stak"
[workspace.lints.rust]
missing_docs = "deny"
warnings = "deny"
[workspace.lints.clippy]
alloc_instead_of_core = "deny"
dbg_macro = "deny"
derive_partial_eq_without_eq = "deny"
equatable_if_let = "deny"
explicit_deref_methods = "deny"
if_not_else = "deny"
manual_let_else = "deny"
missing_const_for_fn = "deny"
option_if_let_else = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
todo = "deny"
unimplemented = "deny"
uninlined_format_args = "deny"
unused_self = "deny"
use_self = "deny"
[profile.release]
codegen-units = 1
lto = true
panic = "abort"
[profile.release_test]
inherits = "release"
debug = "line-tables-only"
debug-assertions = true
overflow-checks = true
[profile.dev.build-override]
opt-level = 3
debug-assertions = false
overflow-checks = false
[profile.release.build-override]
opt-level = 3
debug-assertions = false
overflow-checks = false
[profile.release_test.build-override]
opt-level = 3
debug-assertions = false
overflow-checks = false