diff options
| author | diogo464 <[email protected]> | 2025-07-16 10:46:41 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-07-16 10:46:41 +0100 |
| commit | f319d7ab5278a3cfb43d38875d81c28cc2dce1e1 (patch) | |
| tree | cb161fd990643e267bbc373fb09ccd7b689a23b5 /urpc-macro/Cargo.toml | |
Initial commit - extracted urpc from monorepo
Diffstat (limited to 'urpc-macro/Cargo.toml')
| -rw-r--r-- | urpc-macro/Cargo.toml | 18 |
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] | ||
| 2 | name = "urpc-macro" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | authors = ["Your Name <[email protected]>"] | ||
| 6 | description = "Procedural macros for urpc" | ||
| 7 | license = "MIT OR Apache-2.0" | ||
| 8 | repository = "https://github.com/your-username/urpc" | ||
| 9 | keywords = ["rpc", "async", "networking", "macros"] | ||
| 10 | categories = ["network-programming", "asynchronous"] | ||
| 11 | |||
| 12 | [lib] | ||
| 13 | proc-macro = true | ||
| 14 | |||
| 15 | [dependencies] | ||
| 16 | proc-macro2 = "1.0.95" | ||
| 17 | quote = "1.0.40" | ||
| 18 | syn = { version = "2.0.101", features = ["full"] } | ||
