aboutsummaryrefslogtreecommitdiff
path: root/urpc-macro/Cargo.toml
diff options
context:
space:
mode:
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"] }