-
Notifications
You must be signed in to change notification settings - Fork 151
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
2 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
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,15 @@ | ||
# alloy-sol-macro-expander | ||
|
||
This crate contains the expansion logic for a Solidity proc_macro2::TokenStream. | ||
This crate contains the expansion logic for a Solidity `proc_macro2::TokenStream`. | ||
It's used to expand and generate Rust bindings from Solidity. | ||
|
||
It helps convert Solidity tokens to their respective Rust bindings. | ||
Note: This is not the procedural macro crate, it is intended to be used as library crate. | ||
|
||
This crate is used by [`sol!`] macro in the [`alloy-sol-macro`] crate. | ||
|
||
> [!WARNING] | ||
> This crate does not have a stable API, and all exposed functions are subject to change. | ||
> We reserve the right to make any breaking changes to this crate without notice. | ||
[`sol!`]: https://docs.rs/alloy-sol-macro/latest/alloy_sol_macro/macro.sol.html | ||
[`alloy-sol-macro`]: https://crates.io/alloy-sol-macro/ |
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