-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove subgoals implied by prior errors, filter all errors in a type-…
…checking body
- Loading branch information
1 parent
32c3ab4
commit 2260b83
Showing
12 changed files
with
206 additions
and
96 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "argus-cli" | ||
version = "0.1.9" | ||
version = "0.1.10" | ||
edition = "2021" | ||
authors = ["Gavin Gray <[email protected]>"] | ||
repository = "https://github.com/cognitive-engineering-lab/argus" | ||
|
@@ -10,8 +10,8 @@ license = "MIT" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
argus-lib = { version = "0.1.9", path = "../argus" } | ||
argus-ext = { version = "0.1.9", path = "../argus-ext" } | ||
argus-lib = { version = "0.1.10", path = "../argus" } | ||
argus-ext = { version = "0.1.10", path = "../argus-ext" } | ||
rustc_plugin = "=0.10.0-nightly-2024-05-20" | ||
|
||
rustc_utils.workspace = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "argus-ext" | ||
version = "0.1.9" | ||
version = "0.1.10" | ||
edition = "2021" | ||
authors = ["Gavin Gray <[email protected]>"] | ||
repository = "https://github.com/cognitive-engineering-lab/argus" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "argus-ser" | ||
version = "0.1.9" | ||
version = "0.1.10" | ||
edition = "2021" | ||
authors = ["Gavin Gray <[email protected]>"] | ||
repository = "https://github.com/cognitive-engineering-lab/argus" | ||
|
@@ -28,7 +28,7 @@ smallvec = "1.11.2" | |
itertools = "0.12.0" | ||
ts-rs = { version = "7.1.1", features = ["indexmap-impl"], optional = true } | ||
index_vec = { version = "0.1.3", features = ["serde"] } | ||
argus-ext = { version = "0.1.9", path = "../argus-ext" } | ||
argus-ext = { version = "0.1.10", path = "../argus-ext" } | ||
|
||
[dev-dependencies] | ||
argus-ser = { path = ".", features = ["testing"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "argus-lib" | ||
version = "0.1.9" | ||
version = "0.1.10" | ||
edition = "2021" | ||
authors = ["Gavin Gray <[email protected]>"] | ||
repository = "https://github.com/cognitive-engineering-lab/argus" | ||
|
@@ -21,8 +21,8 @@ fluid-let.workspace = true | |
serde.workspace = true | ||
serde_json.workspace = true | ||
|
||
argus-ext = { version = "0.1.9", path = "../argus-ext" } | ||
argus-ser = { version = "0.1.9", path = "../argus-ser" } | ||
argus-ext = { version = "0.1.10", path = "../argus-ext" } | ||
argus-ser = { version = "0.1.10", path = "../argus-ser" } | ||
index_vec = { version = "0.1.3", features = ["serde"] } | ||
smallvec = "1.11.2" | ||
itertools = "0.12.0" | ||
|
@@ -35,7 +35,7 @@ ts-rs = { version = "7.1.1", features = ["indexmap-impl"], optional = true } | |
|
||
[dev-dependencies] | ||
argus-lib = { path = ".", features = ["testing"] } | ||
argus-ser = { version = "0.1.9", path = "../argus-ser", features = ["testing"] } | ||
argus-ser = { version = "0.1.10", path = "../argus-ser", features = ["testing"] } | ||
rustc_utils = { version = "=0.10.0-nightly-2024-05-20", features = ["serde", "ts-rs"] } | ||
test-log = "0.2.11" | ||
env_logger = "0.9.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
mod dnf; | ||
mod tree; | ||
pub(crate) mod tree; | ||
mod ty; | ||
|
||
use std::time::Instant; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.