generated from web-infra-dev/napi-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
53 lines (44 loc) · 1.2 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
[package]
name = "rspack_sources"
version = "0.4.1"
edition = "2021"
authors = ["h-a-n-a <[email protected]>", "ahabhgk <[email protected]>"]
resolver = "2"
license = "MIT"
description = "Rusty webpack-sources port."
keywords = ["sources", "sourcemap"]
repository = "https://github.com/web-infra-dev/rspack-sources"
documentation = "https://docs.rs/rspack-sources"
readme = "README.md"
include = ["/src/**/*.rs", "/*.toml", "/LICENSE", "/README.md"]
[lints.rust]
unsafe_code = "warn"
missing_docs = "warn"
[lints.clippy]
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
print_stdout = "warn"
print_stderr = "warn"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies]
serde = { version = "1.0.216", features = ["derive", "rc"] }
serde_json = "1.0.133"
dyn-clone = "1.0.17"
rustc-hash = "2.1.0"
dashmap = "6.1.0"
memchr = "2.7.4"
itertools = "0.13"
codspeed-criterion-compat = { version = "2.7.2", default-features = false, optional = true }
static_assertions = "1.1.0"
simd-json = "0.14.3"
[dev-dependencies]
twox-hash = "2.1.0"
base64-simd = "0.8.0"
regex = "1.11.1"
criterion = { version = "0.5.1", default-features = false }
[features]
codspeed = ["codspeed-criterion-compat"]