Skip to repository content30 lines · 858 B · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:35:10.442Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
Cargo.toml
1[package]
2name = "lints"
3version = "0.1.0"
4edition = "2024"
5publish = false
6description = "Dylint lints for catching bad Zed specific patterns."
7
8[lib]
9crate-type = ["cdylib"]
10
11[dependencies]
12clippy_utils = { git = "https://github.com/rust-lang/rust-clippy", rev = "86390a3c03438b660c5efc64d4e18ae65982f5c0" }
13dylint_linting = "6.0"
14
15[dev-dependencies]
16# `deny_warnings` restores `-D warnings` for the UI fixtures (off by default
17# since dylint 3.0), so toolchain drift surfaces as a failing test.
18dylint_testing = { version = "6.0", features = ["deny_warnings"] }
19
20[package.metadata.rust-analyzer]
21rustc_private = true
22
23# Keep this crate out of the zed workspace. It pins its own nightly toolchain
24# (see `rust-toolchain.toml`) to match `clippy_utils`.
25[workspace]
26
27[lints.rust.unexpected_cfgs]
28level = "warn"
29check-cfg = ["cfg(dylint_lib, values(any()))"]
30