mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-10 20:41:59 +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
32 lines
568 B
TOML
32 lines
568 B
TOML
[package]
|
|
name = "live_kit_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "SDK for the LiveKit server API"
|
|
publish = false
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/live_kit_server.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-trait.workspace = true
|
|
hmac = "0.12"
|
|
jwt = "0.16"
|
|
log.workspace = true
|
|
prost.workspace = true
|
|
prost-types = "0.8"
|
|
reqwest = "0.11"
|
|
serde.workspace = true
|
|
sha2.workspace = true
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.9"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["prost-types"]
|