-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
68 lines (60 loc) · 2.05 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
[workspace]
members = [
"cargo-marker",
"marker_adapter",
"marker_api",
"marker_rustc_driver",
"marker_utils",
"marker_lints",
"marker_uitest",
"marker_uilints",
]
resolver = "2"
[profile.release]
codegen-units = 1
strip = false
# ⚠️ Turns out there is some bug in LTO on Windows, because it leads to the
# `marker_rustc_driver` crashing with "exit code: 0xc0000005, STATUS_ACCESS_VIOLATION"
lto = false
[workspace.package]
edition = "2021"
keywords = ["marker", "lint"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-marker/marker"
# region replace marker version dev
version = "0.6.0-dev"
# endregion replace marker version dev
# The MSRV is applied to the public library crates published to crates.io
rust-version = "1.70"
[workspace.dependencies]
# region replace marker version dev
marker_adapter = { path = "./marker_adapter", version = "0.6.0-dev" }
marker_api = { path = "./marker_api", version = "0.6.0-dev" }
marker_error = { path = "./marker_error", version = "0.6.0-dev" }
marker_uitest = { path = "./marker_uitest", features = ["dev-build"] }
marker_utils = { path = "./marker_utils", version = "0.6.0-dev" }
# endregion replace marker version dev
bumpalo = "3.14"
camino = { version = "1.1", features = ["serde1"] }
cargo_metadata = "0.18"
clap = { version = "4.4.11", features = ["string", "derive"] }
expect-test = "1.4"
itertools = "0.12"
libloading = "0.8.0"
miette = { version = "5.10", features = ["fancy-no-backtrace"] }
rustc_tools_util = "0.3"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
shlex = "1.2"
thiserror = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-error = "0.2"
tracing-subscriber = "0.3"
typed-builder = "0.18"
ui_test = "0.21.2"
visibility = "0.1.0"
yansi = "1.0.0-rc.1"
[workspace.metadata.marker.lints]
marker_lints = { path = "./marker_lints" }