-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a serialization schema to the
TransactionV1
type subtree bas…
…ed on a calltable
- Loading branch information
Jakub Zajkowski
committed
Aug 9, 2024
1 parent
c58bccf
commit a7c915a
Showing
31 changed files
with
3,578 additions
and
829 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "macros" | ||
version = "2.0.0" # when updating, also update 'html_root_url' in lib.rs | ||
authors = ["Jakub Zajkowski <jakub@casperlabs.io>"] | ||
edition = "2021" | ||
description = "Macros used in casper node" | ||
documentation = "https://docs.rs/casper-node" | ||
homepage = "https://casperlabs.io" | ||
repository = "https://github.com/CasperLabs/casper-node/tree/master/macros" | ||
license = "Apache-2.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
proc-macro2 = "1.0.86" | ||
quote = "1.0.7" | ||
syn = {version = "2.0.72", features = ["full", "extra-traits"]} |
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,14 @@ | ||
# `macros` | ||
|
||
A library module that is a collection of procedural macros used in the casper-node project. | ||
|
||
[![LOGO](https://raw.githubusercontent.com/casper-network/casper-node/master/images/casper-association-logo-primary.svg)](https://casper.network/) | ||
|
||
[![Build Status](https://drone-auto-casper-network.casperlabs.io/api/badges/casper-network/casper-node/status.svg?branch=dev)](http://drone-auto-casper-network.casperlabs.io/casper-network/casper-node) | ||
[![Crates.io](https://img.shields.io/crates/v/casper-hashing)](https://crates.io/crates/casper-binary-port) | ||
[![Documentation](https://docs.rs/casper-hashing/badge.svg)](https://docs.rs/casper-binary-port) | ||
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/CasperLabs/casper-node/blob/master/LICENSE) | ||
|
||
## License | ||
|
||
Licensed under the [Apache License Version 2.0](https://github.com/casper-network/casper-node/blob/master/LICENSE). |
Oops, something went wrong.