mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
22fe03913c
This PR moves the Clippy configuration up to the workspace level. We're using the [`lints` table](https://doc.rust-lang.org/cargo/reference/workspaces.html#the-lints-table) to configure the Clippy ruleset in the workspace's `Cargo.toml`. Each crate in the workspace now has the following in their own `Cargo.toml` to inherit the lints from the workspace: ```toml [lints] workspace = true ``` This allows for configuring rust-analyzer to show Clippy lints in the editor by using the following configuration in your Zed `settings.json`: ```json { "lsp": { "rust-analyzer": { "initialization_options": { "check": { "command": "clippy" } } } } ``` Release Notes: - N/A
100 lines
3.2 KiB
TOML
100 lines
3.2 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathan@zed.dev>"]
|
|
default-run = "collab"
|
|
edition = "2021"
|
|
name = "collab"
|
|
version = "0.44.0"
|
|
publish = false
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
name = "collab"
|
|
|
|
[[bin]]
|
|
name = "seed"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-tungstenite = "0.16"
|
|
aws-config = { version = "1.1.5" }
|
|
aws-sdk-s3 = { version = "1.15.0" }
|
|
axum = { version = "0.5", features = ["json", "headers", "ws"] }
|
|
axum-extra = { version = "0.3", features = ["erased-json"] }
|
|
chrono.workspace = true
|
|
clock.workspace = true
|
|
clickhouse.workspace = true
|
|
collections.workspace = true
|
|
dashmap = "5.4"
|
|
envy = "0.4.2"
|
|
futures.workspace = true
|
|
hex.workspace = true
|
|
hyper = "0.14"
|
|
live_kit_server.workspace = true
|
|
log.workspace = true
|
|
nanoid = "0.4"
|
|
parking_lot.workspace = true
|
|
prometheus = "0.13"
|
|
prost.workspace = true
|
|
rand.workspace = true
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
rpc.workspace = true
|
|
scrypt = "0.7"
|
|
sea-orm = { version = "0.12.x", features = ["sqlx-postgres", "postgres-array", "runtime-tokio-rustls", "with-uuid"] }
|
|
semver.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "json", "time", "uuid", "any"] }
|
|
rustc-demangle.workspace = true
|
|
telemetry_events.workspace = true
|
|
text.workspace = true
|
|
time.workspace = true
|
|
tokio = { version = "1", features = ["full"] }
|
|
toml.workspace = true
|
|
tower = "0.4"
|
|
tower-http = { workspace = true, features = ["trace"] }
|
|
tracing = "0.1.34"
|
|
tracing-log = "0.1.3"
|
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter", "json"] }
|
|
util.workspace = true
|
|
uuid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
async-trait.workspace = true
|
|
audio.workspace = true
|
|
call = { workspace = true, features = ["test-support"] }
|
|
channel.workspace = true
|
|
client = { workspace = true, features = ["test-support"] }
|
|
collab_ui = { workspace = true, features = ["test-support"] }
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
ctor.workspace = true
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
env_logger.workspace = true
|
|
file_finder.workspace = true
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
git = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
indoc.workspace = true
|
|
language = { workspace = true, features = ["test-support"] }
|
|
lazy_static.workspace = true
|
|
live_kit_client = { workspace = true, features = ["test-support"] }
|
|
lsp = { workspace = true, features = ["test-support"] }
|
|
menu.workspace = true
|
|
node_runtime.workspace = true
|
|
notifications = { workspace = true, features = ["test-support"] }
|
|
pretty_assertions.workspace = true
|
|
project = { workspace = true, features = ["test-support"] }
|
|
release_channel.workspace = true
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
sea-orm = { version = "0.12.x", features = ["sqlx-sqlite"] }
|
|
serde_json.workspace = true
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
sqlx = { version = "0.7", features = ["sqlite"] }
|
|
theme.workspace = true
|
|
unindent.workspace = true
|
|
util.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|