-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
39 lines (34 loc) · 937 Bytes
/
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
[workspace]
resolver = "2"
members = [
"buildpacks/nodejs-engine",
"buildpacks/nodejs-corepack",
"buildpacks/nodejs-function-invoker",
"buildpacks/nodejs-npm-engine",
"buildpacks/nodejs-npm-install",
"buildpacks/nodejs-pnpm-engine",
"buildpacks/nodejs-pnpm-install",
"buildpacks/nodejs-yarn",
"common/nodejs-utils",
"test_support"
]
[workspace.package]
rust-version = "1.80"
edition = "2021"
[workspace.lints.rust]
unreachable_pub = "warn"
unsafe_code = "warn"
unused_crate_dependencies = "warn"
[workspace.lints.clippy]
panic_in_result_fn = "warn"
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"
enum_variant_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[workspace.dependencies]
heroku-nodejs-utils = { path = "./common/nodejs-utils" }
test_support = { path = "./test_support" }
[profile.release]
strip = true