-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (80 loc) · 2.84 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (80 loc) · 2.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[workspace]
resolver = "2"
members = [
"crates/spar-parser",
"crates/spar-syntax",
"crates/spar-annex",
"crates/spar-base-db",
"crates/spar-hir-def",
"crates/spar-hir",
"crates/spar-analysis",
"crates/spar-network",
"crates/spar-transform",
"crates/spar-variants",
"crates/spar-cli",
"crates/spar-mcp",
"crates/spar-codegen",
"crates/spar-render",
"crates/spar-solver",
"crates/spar-sysml2",
"crates/spar-dbc",
"crates/spar-verify-macros",
"crates/spar-verify",
"crates/spar-wasm",
"crates/spar-insight",
"crates/spar-trace-topology",
"crates/spar-mermaid",
]
[workspace.package]
version = "0.42.0"
edition = "2024"
# The floor is NOT a free choice — it is the maximum `rust-version` over the
# whole resolved dependency closure, which cargo enforces whether or not it is
# written down here. Declaring it makes that number a reviewable repo fact
# instead of an emergent property of Cargo.lock that moves on every
# `cargo update` with no diff anywhere in this repo.
#
# Currently set by smol_str@0.3.6 (1.89); the next tier down is 1.87.0
# (wit-bindgen, wasip3). Do not hand-edit this to match a local toolchain —
# tools/check_msrv.py re-derives the closure maximum and fails if this is
# below it.
rust-version = "1.89"
license = "MIT"
repository = "https://github.com/pulseengine/spar"
[workspace.dependencies]
spar-parser = { path = "crates/spar-parser" }
spar-syntax = { path = "crates/spar-syntax" }
spar-annex = { path = "crates/spar-annex" }
spar-base-db = { path = "crates/spar-base-db" }
spar-hir-def = { path = "crates/spar-hir-def" }
spar-hir = { path = "crates/spar-hir" }
spar-analysis = { path = "crates/spar-analysis" }
spar-network = { path = "crates/spar-network" }
spar-render = { path = "crates/spar-render" }
spar-solver = { path = "crates/spar-solver" }
spar-sysml2 = { path = "crates/spar-sysml2" }
spar-dbc = { path = "crates/spar-dbc" }
spar-transform = { path = "crates/spar-transform" }
spar-variants = { path = "crates/spar-variants" }
spar-codegen = { path = "crates/spar-codegen" }
spar-insight = { path = "crates/spar-insight" }
spar-trace-topology = { path = "crates/spar-trace-topology" }
spar-mermaid = { path = "crates/spar-mermaid" }
rowan = "0.16"
salsa = "0.26"
la-arena = "0.3"
rustc-hash = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
smol_str = "0.3"
petgraph = "0.7"
etch = { git = "https://github.com/pulseengine/rivet.git", rev = "4c067093ac34fc9e32227bc5bc853d47e9220540", package = "etch" }
spar-verify-macros = { path = "crates/spar-verify-macros" }
spar-verify = { path = "crates/spar-verify" }
quote = "1"
syn = { version = "2", features = ["full"] }
proc-macro2 = "1"
proptest = "1"
good_lp = { version = "1", default-features = false, features = ["highs"] }
criterion = { version = "0.5", features = ["html_reports"] }