-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 2 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (45 loc) · 2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[workspace]
members = ["crates/wright-core", "crates/wright-ir", "crates/wright-analyzer", "crates/wright-driver", "crates/wright-cli", "crates/wright-opy", "crates/wright-ostw", "crates/wright-transform", "crates/wright-bench", "crates/wright-consumer", "crates/wright-language", "crates/wright-lsp", "crates/wright-lpp"]
resolver = "3"
[workspace.package]
version = "0.2.16"
edition = "2024"
rust-version = "1.85.0"
license = "AGPL-3.0-or-later"
repository = "https://github.com/wrightkit/wright"
[workspace.dependencies]
# Canonical Workshop core (wright#143): workshop-rs owns the Workshop catalog,
# parser, emitter, detection, validation, and Workshop IR. This is the single
# released reference for the cutover — workspace crates consume it via
# `workshop-rs.workspace = true`.
workshop-rs = "=0.1.11"
opy-rs = "=0.1.5"
opy-compiler = "=0.1.5"
del-rs = { package = "deltin-rs", version = "=0.1.1" }
libc = "0.2"
serde = "1"
serde_json = "1"
sha2 = "0.10"
wright-analyzer = { path = "crates/wright-analyzer" }
wright-core = { path = "crates/wright-core" }
wright-driver = { path = "crates/wright-driver" }
wright-ir = { path = "crates/wright-ir" }
wright-opy = { path = "crates/wright-opy" }
wright-ostw = { path = "crates/wright-ostw" }
wright-transform = { path = "crates/wright-transform" }
[workspace.lints.rust]
# Unsafe operations inside an unsafe function still need an explicit block so
# the unsafe surface and its invariants remain visible at the operation site.
unsafe_op_in_unsafe_fn = "deny"
# Public items in a private module are not part of a usable crate API.
unreachable_pub = "deny"
[workspace.lints.clippy]
# These groups cover bug-prone findings without enabling broad style or
# restriction policies; CI promotes the remaining warning-level checks.
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
perf = { level = "warn", priority = -1 }
# These development/progress macros must not reach compiler or tooling code.
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"