Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/spawn/compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ struct Compat {
}

const COMPAT_MATRIX: &[Compat] = &[
// 0.18.0 introduced `decode`, `--emit tir-json`, `--diagnostics-format`
// (0.17.0 was cut before that surface existed).
// 0.22.0 introduced parametric tuple types: tx3c now emits TIR carrying the
// `Tuple` type/expression variants, a forward-incompatible addition that
// pre-0.22 readers cannot decode. Pin the floor here so the TIR `trix`
// consumes always matches the schema it supports.
Compat {
tool: "tx3c",
min: "0.18.0",
min: "0.22.0",
},
];

Expand Down
Loading