-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
123 lines (116 loc) · 3.64 KB
/
Cargo.toml
File metadata and controls
123 lines (116 loc) · 3.64 KB
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
115
116
117
118
119
120
121
122
123
[workspace]
resolver = "3"
members = ["crates/*", "packages/codec", "packages/sourcemap", "packages/sourcemap-wasm", "packages/generator-wasm", "packages/remapping-wasm", "packages/symbolicate-wasm", "packages/scopes-wasm", "packages/generator", "packages/remapping"]
[workspace.package]
version = "0.3.6"
edition = "2024"
rust-version = "1.88"
license = "MIT"
repository = "https://github.com/fallow-rs/srcmap"
homepage = "https://github.com/fallow-rs/srcmap"
[workspace.dependencies]
srcmap-codec = { version = "0.3.6", path = "crates/codec" }
srcmap-sourcemap = { version = "0.3.6", path = "crates/sourcemap" }
srcmap-generator = { version = "0.3.6", path = "crates/generator" }
srcmap-remapping = { version = "0.3.6", path = "crates/remapping" }
srcmap-scopes = { version = "0.3.6", path = "crates/scopes" }
srcmap-symbolicate = { version = "0.3.6", path = "crates/symbolicate" }
criterion = { version = "0.5", features = ["html_reports"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["raw_value"] }
simd-json = "0.14"
sonic-rs = "0.3"
rayon = "1"
napi = { version = "2", default-features = false, features = ["napi6"] }
napi-derive = "2"
napi-build = "2"
wasm-bindgen = "0.2"
js-sys = "0.3"
clap = { version = "4", features = ["derive"] }
rustc-hash = "2"
ureq = "2"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
dbg_macro = "warn"
todo = "warn"
print_stdout = "warn"
print_stderr = "warn"
clone_on_ref_ptr = "warn"
empty_drop = "warn"
exit = "warn"
get_unwrap = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_safety_comment = "warn"
unused_result_ok = "warn"
infinite_loop = "warn"
unimplemented = "warn"
excessive_nesting = "warn"
self_named_module_files = "warn"
allow_attributes_without_reason = "warn"
filetype_is_file = "warn"
rest_pat_in_fully_bound_structs = "warn"
pub_underscore_fields = "warn"
non_zero_suggestions = "warn"
precedence_bits = "warn"
empty_structs_with_brackets = "warn"
pathbuf_init_then_push = "warn"
map_with_unused_argument_over_ranges = "warn"
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
cast_possible_wrap = "allow"
cast_lossless = "allow"
too_many_lines = "allow"
items_after_statements = "allow"
single_match_else = "allow"
if_not_else = "allow"
redundant_closure_for_method_calls = "allow"
similar_names = "allow"
wildcard_imports = "allow"
unnested_or_patterns = "allow"
doc_markdown = "allow"
too_long_first_doc_paragraph = "allow"
struct_excessive_bools = "allow"
fn_params_excessive_bools = "allow"
option_if_let_else = "allow"
missing_const_for_fn = "allow"
use_self = "allow"
many_single_char_names = "allow"
explicit_iter_loop = "allow"
inline_always = "allow"
wrong_self_convention = "allow"
needless_pass_by_value = "allow"
struct_field_names = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
naive_bytecount = "allow"
assigning_clones = "allow"
match_same_arms = "allow"
redundant_else = "allow"
manual_let_else = "allow"
implicit_hasher = "allow"
semicolon_if_nothing_returned = "allow"
elidable_lifetime_names = "allow"
ref_option = "allow"
map_unwrap_or = "allow"
multiple_crate_versions = "allow"
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "warn"
unused_unsafe = "warn"
non_ascii_idents = "warn"
unit_bindings = "warn"
tail_expr_drop_order = "warn"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"
opt-level = 3