-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
114 lines (102 loc) · 3.91 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[workspace]
members = ["napi"]
resolver = "2"
[package]
version = "2.0.1"
name = "oxc_resolver"
authors = ["Boshen <[email protected]>"]
categories = ["development-tools"]
description = "ESM / CJS module resolution"
edition = "2021"
homepage = "https://github.com/oxc-project/oxc-resolver"
keywords = ["node", "resolve", "cjs", "esm", "enhanced-resolve"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/oxc-project/oxc-resolver"
rust-version = "1.70"
include = ["/src", "/examples", "/benches"]
[lib]
doctest = false
[[bench]]
name = "resolver"
harness = false
[lints.clippy]
all = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
# restriction
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
# I like the explicitness of this rule as it removes confusion around `clone`.
# This increases readability, avoids `clone` mindlessly and heap allocating on accident.
clone_on_ref_ptr = "warn"
# These two are mutually exclusive, I like `mod.rs` files for better fuzzy searches on module entries.
self_named_module_files = "warn" # "-Wclippy::mod_module_files"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
filetype_is_file = "warn"
get_unwrap = "warn"
impl_trait_in_params = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
unnecessary_safety_comment = "warn"
undocumented_unsafe_blocks = "warn"
# I want to write the best Rust code so both pedantic and nursery is enabled.
# We should only disable rules globally if they are either false positives, chaotic, or does not make sense.
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
# Allowed rules
# pedantic
# This rule is too pedantic, I don't want to force this because naming things are hard.
module_name_repetitions = "allow"
doc_markdown = "allow"
# cargo
multiple_crate_versions = "allow"
[[example]]
name = "resolver"
[dependencies]
tracing = "0.1"
dashmap = "6"
serde = { version = "1", features = ["derive"] } # derive for Deserialize from package.json
serde_json = { version = "1", features = [
"preserve_order",
] } # preserve_order: package_json.exports requires order such as `["require", "import", "default"]`
rustc-hash = { version = "2" }
dunce = "1" # Normalize Windows paths to the most compatible format, avoiding UNC where possible
once_cell = "1" # Use `std::sync::OnceLock::get_or_try_init` when it is stable.
thiserror = "1"
json-strip-comments = "1"
indexmap = { version = "2", features = ["serde"] }
cfg-if = "1"
simdutf8 = { version = "0.1", features = ["aarch64_neon"] }
pnp = { version = "0.9.0", optional = true }
document-features = { version = "0.2.10", optional = true }
[dev-dependencies]
vfs = "0.12.0" # for testing with in memory file system
rayon = { version = "1.10.0" }
criterion2 = { version = "2.0.0", default-features = false }
normalize-path = { version = "0.2.1" }
[features]
default = []
## Enables the [PackageJson::raw_json] API,
## which returns the `package.json` with `serde_json::Value`.
package_json_raw_json_api = []
## [Yarn Plug'n'Play](https://yarnpkg.com/features/pnp)
yarn_pnp = ["pnp"]
# For codspeed benchmark
codspeed = ["criterion2/codspeed"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
# For napi
[profile.release]
# Configurations explicitly listed here for clarity.
# Using the best options for performance.
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols" # set to `false` for debug information
debug = false # set to `true` for debug information
panic = "abort" # Let it crash and force ourselves to write safe Rust.