Skip to content

Commit a338a69

Browse files
authored
Update README.md
Update the description to reflect the recent refactoring that moves conversion logic to `rustc_public`.
1 parent 49b9e14 commit a338a69

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

rustc_public/README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,11 @@ implementation is split between two main crates:
1414

1515
- `rustc_public`: Public crate, to be published on crates.io, which will contain
1616
the stable data structure as well as calls to `rustc_public_bridge` APIs. The
17-
translation between stable and internal constructs will also be done in this crate,
18-
however, this is currently implemented in the `rustc_public_bridge` crate.[^translation].
17+
translation between stable and internal constructs is also done in this crate.
1918
- `rustc_public_bridge`: This crate implements the public APIs to the compiler.
2019
It is responsible for gathering all the information requested, and providing
2120
the data in its unstable form.
2221

23-
[^translation]: This is currently implemented in the `rustc_public_bridge` crate,
24-
but we are working to change that.
25-
2622
I.e.,
2723
tools will depend on `rustc_public` crate,
2824
which will invoke the compiler using APIs defined in `rustc_public_bridge`.

0 commit comments

Comments
 (0)