-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
108 additions
and
164 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
A helper crate for use by chalk crates for `derive` macros. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
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,3 +1,3 @@ | ||
The core trait solving engine used in Chalk. This engine is meant to | ||
be reused by rustc. Other projects may of course re-use it too, if you | ||
have a need, but don't expect much stability in the interface yet. | ||
The core crate for Chalk. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
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,38 +1,22 @@ | ||
[package] | ||
name = "chalk-integration" | ||
version = "0.1.0" | ||
version = "0.10.0" | ||
license = "Apache-2.0/MIT" | ||
description = "Sample solver setup for Chalk" | ||
authors = ["Rust Compiler Team", "Chalk developers"] | ||
repository = "https://github.com/rust-lang/chalk" | ||
keywords = ["compiler", "traits", "prolog"] | ||
edition = "2018" | ||
publish = false | ||
|
||
[dependencies] | ||
lalrpop-intern = "0.15.1" | ||
salsa = "0.10.0" | ||
|
||
[dependencies.chalk-engine] | ||
version = "0.9.0" | ||
path = "../chalk-engine" | ||
|
||
[dependencies.chalk-solve] | ||
version = "0.1.0" | ||
path = "../chalk-solve" | ||
|
||
[dependencies.chalk-parse] | ||
version = "0.1.0" | ||
path = "../chalk-parse" | ||
|
||
[dependencies.chalk-ir] | ||
version = "0.1.0" | ||
path = "../chalk-ir" | ||
features = ["default-interner"] | ||
|
||
[dependencies.chalk-rust-ir] | ||
version = "0.1.0" | ||
path = "../chalk-rust-ir" | ||
|
||
[dependencies.chalk-macros] | ||
version = "0.1.0" | ||
path = "../chalk-macros" | ||
chalk-macros = { version = "0.10.0", path = "../chalk-macros" } | ||
chalk-derive = { version = "0.10.0", path = "../chalk-derive" } | ||
chalk-engine = { version = "0.10.0", path = "../chalk-engine" } | ||
chalk-ir = { version = "0.10.0", path = "../chalk-ir", features = ["default-interner"] } | ||
chalk-rust-ir = { version = "0.10.0", path = "../chalk-rust-ir" } | ||
chalk-solve = { version = "0.10.0", path = "../chalk-solve" } | ||
chalk-parse = { version = "0.10.0", path = "../chalk-parse" } |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
A library that takes AST from `chalk-parse` and uses it to drive `chalk-solve`. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
A rust type library for chalk. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
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 +1,3 @@ | ||
Various macros used within Chalk. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
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 +1,3 @@ | ||
Parser for the Chalk standalone trait system implementation. | ||
|
||
See [Github](https://github.com/rust-lang/chalk) for up-to-date information. |
Oops, something went wrong.