aboutsummaryrefslogtreecommitdiff
path: root/urpc-macro/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-16 10:46:41 +0100
committerdiogo464 <[email protected]>2025-07-16 10:46:41 +0100
commitf319d7ab5278a3cfb43d38875d81c28cc2dce1e1 (patch)
treecb161fd990643e267bbc373fb09ccd7b689a23b5 /urpc-macro/Cargo.toml
Initial commit - extracted urpc from monorepo
Diffstat (limited to 'urpc-macro/Cargo.toml')
-rw-r--r--urpc-macro/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/urpc-macro/Cargo.toml b/urpc-macro/Cargo.toml
new file mode 100644
index 0000000..16b5650
--- /dev/null
+++ b/urpc-macro/Cargo.toml
@@ -0,0 +1,18 @@
1[package]
2name = "urpc-macro"
3version = "0.1.0"
4edition = "2021"
5authors = ["Your Name <[email protected]>"]
6description = "Procedural macros for urpc"
7license = "MIT OR Apache-2.0"
8repository = "https://github.com/your-username/urpc"
9keywords = ["rpc", "async", "networking", "macros"]
10categories = ["network-programming", "asynchronous"]
11
12[lib]
13proc-macro = true
14
15[dependencies]
16proc-macro2 = "1.0.95"
17quote = "1.0.40"
18syn = { version = "2.0.101", features = ["full"] }