aboutsummaryrefslogtreecommitdiff
path: root/urpc-macro/Cargo.toml
blob: 16b565056b4f9622283d20416b47c1dd1f463e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "urpc-macro"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <[email protected]>"]
description = "Procedural macros for urpc"
license = "MIT OR Apache-2.0"
repository = "https://github.com/your-username/urpc"
keywords = ["rpc", "async", "networking", "macros"]
categories = ["network-programming", "asynchronous"]

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "1.0.95"
quote = "1.0.40"
syn = { version = "2.0.101", features = ["full"] }