13 unstable releases (6 breaking)

0.7.2 Feb 4, 2024
0.7.0 Dec 3, 2023
0.6.1 Jul 8, 2023

#13 in #smart-contract

Download history 14/week @ 2024-01-29 19/week @ 2024-02-19 35/week @ 2024-02-26 7/week @ 2024-03-04 62/week @ 2024-03-11 3/week @ 2024-03-18 39/week @ 2024-04-01 3/week @ 2024-04-08 4/week @ 2024-04-15 10/week @ 2024-04-22

56 downloads per month
Used in 3 crates (via ink-analyzer-ir)

MIT/Apache

30KB
534 lines

ink! Analyzer Proc-macros

Procedural macros for ink-analyzer and ink-analyzer-ir.

This library implements procedural macros used primarily by the ink-analyzer-ir crate.

Installation

Run the following Cargo command in your project directory

cargo add ink-analyzer-macro

Usage

Example:

Using ink_analyzer_macro::entity proc-macro to create a Contract type.

use ink_analyzer_ir::{Event, Message, Storage};
use ink_analyzer_ir::ast;

#[ink_analyzer_macro::entity(macro_kind = Contract)]
#[derive(Debug, Clone, PartialEq, Eq)]
struct Contract {
    ast: ast::Module,
    storage: Option<Storage>,
    events: Vec<Event>,
    #[initializer(call = ink_analyzer_ir::ink_callable_closest_descendants)]
    messages: Vec<Message>,
    // --snip--
}

Documentation

https://docs.rs/ink-analyzer-macro/latest/ink_analyzer_macro/

Or you can access documentation locally by running the following command from the project root

cargo doc -p ink-analyzer-macro --open

Testing

You can run unit tests for all the core functionality by running the following command from the project root

cargo test -p ink-analyzer-macro

License

Licensed under either MIT or Apache-2.0 license at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.7–1.1MB
~25K SLoC