forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 928 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
[workspace]
resolver = "2"
members = [
"docstrings",
"forc",
"forc-gm",
"forc-pkg",
"forc-plugins/forc-explore",
"forc-plugins/forc-fmt",
"forc-plugins/forc-fmt-v2",
"forc-plugins/forc-lsp",
"forc-util",
"scripts/examples-checker",
"scripts/mdbook-forc-documenter",
"sway-core",
"sway-fmt",
"sway-fmt-v2",
"sway-ir",
"sway-lsp",
"sway-parse",
"sway-types",
"sway-utils",
"test",
"test-sig-gen-util",
]
exclude = [
"examples/*"
]
[profile.dev.package.sway-lsp]
debug = 2
[patch.crates-io]
# A workaround for a bug in mdbook `0.4.20` introduced by some breakage in rustc 1.64.0-nightly (62b272d25 2022-07-21).
# This should be removed when either this PR https://github.com/rust-lang/mdBook/pull/1861 or a related fix is published.
mdbook = { git = "https://github.com/mitchmindtree/mdBook", branch = "nightly-borrowcheck-err-workaround" }