-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.32 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.32 KB
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
[package]
name = "glslint"
version = "0.8.1"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "A GLSL checker and language server for WebGL shader toolkits (luma.gl/deck.gl, maplibre, ShaderToy) and any project"
repository = "https://github.com/johncarmack1984/glslint"
keywords = ["glsl", "shader", "webgl", "lsp", "linter"]
categories = ["development-tools", "command-line-utilities", "graphics"]
# Binary-only on purpose: `glslint` ships as the `check`/`lsp` commands, not as a
# library. The assembler, the diagnostic line-mapper, and the symbol scanner are
# the interesting internals, and their shapes are still moving — publishing them
# as a lib would freeze that surface into semver. `autolib = false` makes the
# choice explicit, so adding a src/lib.rs can't quietly export an API.
autolib = false
[dependencies]
anyhow = "1.0.103"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.52.3", features = ["full"] }
toml = "1.1.2"
tower-lsp = "0.20.0"
# Workspace-independent lint floor: no unsafe anywhere in this crate, and the
# full clippy `all` group surfaces as warnings (CI runs clippy with
# -D warnings, so these are enforced).
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.clippy]
all = { level = "warn", priority = -1 }
unwrap_used = "warn"
panic = "warn"
todo = "warn"