rust-analyzer/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

107 lines
4 KiB
TOML
Raw Normal View History

2018-02-03 09:51:06 +00:00
[workspace]
members = ["xtask/", "lib/*", "crates/*"]
2022-04-29 14:29:24 +00:00
exclude = ["crates/proc-macro-test/imp"]
2023-06-04 08:02:11 +00:00
resolver = "2"
2018-08-15 21:23:22 +00:00
[workspace.package]
rust-version = "1.70"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer team"]
2019-10-11 08:06:28 +00:00
[profile.dev]
2020-08-18 15:44:51 +00:00
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
2019-10-11 08:06:28 +00:00
2020-08-18 15:44:51 +00:00
[profile.dev.package]
# These speed up local tests.
rowan.opt-level = 3
rustc-hash.opt-level = 3
smol_str.opt-level = 3
text-size.opt-level = 3
# This speeds up `cargo xtask dist`.
miniz_oxide.opt-level = 3
2018-08-15 21:23:22 +00:00
[profile.release]
2021-05-30 23:12:11 +00:00
incremental = true
2021-10-19 12:15:47 +00:00
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0
2018-12-30 08:09:17 +00:00
[patch.'crates-io']
2020-01-11 21:15:27 +00:00
# rowan = { path = "../rowan" }
# chalk-solve = { path = "../chalk/chalk-solve" }
# chalk-ir = { path = "../chalk/chalk-ir" }
# chalk-recursive = { path = "../chalk/chalk-recursive" }
# chalk-derive = { path = "../chalk/chalk-derive" }
# line-index = { path = "lib/line-index" }
# la-arena = { path = "lib/la-arena" }
# lsp-server = { path = "lib/lsp-server" }
2020-12-15 14:37:37 +00:00
# ungrammar = { path = "../ungrammar" }
# salsa = { path = "../salsa" }
[workspace.dependencies]
# local crates
base-db = { path = "./crates/base-db", version = "0.0.0" }
cfg = { path = "./crates/cfg", version = "0.0.0" }
flycheck = { path = "./crates/flycheck", version = "0.0.0" }
hir = { path = "./crates/hir", version = "0.0.0" }
hir-def = { path = "./crates/hir-def", version = "0.0.0" }
hir-expand = { path = "./crates/hir-expand", version = "0.0.0" }
hir-ty = { path = "./crates/hir-ty", version = "0.0.0" }
ide = { path = "./crates/ide", version = "0.0.0" }
ide-assists = { path = "./crates/ide-assists", version = "0.0.0" }
ide-completion = { path = "./crates/ide-completion", version = "0.0.0" }
ide-db = { path = "./crates/ide-db", version = "0.0.0" }
ide-diagnostics = { path = "./crates/ide-diagnostics", version = "0.0.0" }
ide-ssr = { path = "./crates/ide-ssr", version = "0.0.0" }
intern = { path = "./crates/intern", version = "0.0.0" }
limit = { path = "./crates/limit", version = "0.0.0" }
load-cargo = { path = "./crates/load-cargo", version = "0.0.0" }
mbe = { path = "./crates/mbe", version = "0.0.0" }
parser = { path = "./crates/parser", version = "0.0.0" }
paths = { path = "./crates/paths", version = "0.0.0" }
proc-macro-api = { path = "./crates/proc-macro-api", version = "0.0.0" }
proc-macro-srv = { path = "./crates/proc-macro-srv", version = "0.0.0" }
proc-macro-srv-cli = { path = "./crates/proc-macro-srv-cli", version = "0.0.0" }
profile = { path = "./crates/profile", version = "0.0.0" }
project-model = { path = "./crates/project-model", version = "0.0.0" }
sourcegen = { path = "./crates/sourcegen", version = "0.0.0" }
stdx = { path = "./crates/stdx", version = "0.0.0" }
syntax = { path = "./crates/syntax", version = "0.0.0" }
test-utils = { path = "./crates/test-utils", version = "0.0.0" }
text-edit = { path = "./crates/text-edit", version = "0.0.0" }
toolchain = { path = "./crates/toolchain", version = "0.0.0" }
tt = { path = "./crates/tt", version = "0.0.0" }
vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
vfs = { path = "./crates/vfs", version = "0.0.0" }
# local crates that aren't published to crates.io. These should not have versions.
proc-macro-test = { path = "./crates/proc-macro-test" }
# In-tree crates that are published separately and follow semver. See lib/README.md
line-index = { version = "0.1.0-pre.1" }
la-arena = { version = "0.3.1" }
2023-08-19 12:36:07 +00:00
lsp-server = { version = "0.7.2" }
2023-03-25 13:43:08 +00:00
# non-local crates
2023-05-06 07:51:25 +00:00
smallvec = { version = "1.10.0", features = [
"const_new",
"union",
"const_generics",
] }
2023-04-11 12:05:22 +00:00
smol_str = "0.2.0"
2023-05-04 06:48:59 +00:00
nohash-hasher = "0.2.0"
2023-05-04 06:52:58 +00:00
text-size = "1.1.0"
serde = { version = "1.0.156", features = ["derive"] }
2023-06-18 16:04:28 +00:00
serde_json = "1.0.96"
2023-05-02 14:12:22 +00:00
triomphe = { version = "0.1.8", default-features = false, features = ["std"] }
2023-06-18 16:44:09 +00:00
# can't upgrade due to dashmap depending on 0.12.3 currently
hashbrown = { version = "0.12.3", features = ["inline-more"], default-features = false }
2023-05-18 08:17:40 +00:00
rustc_lexer = { version = "0.1.0", package = "ra-ap-rustc_lexer" }