diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..13032d9 --- /dev/null +++ b/Cargo.toml | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | [package] | ||
| 2 | name = "urpc" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | authors = ["Your Name <[email protected]>"] | ||
| 6 | description = "A minimalistic RPC framework for Rust" | ||
| 7 | license = "MIT OR Apache-2.0" | ||
| 8 | repository = "https://github.com/your-username/urpc" | ||
| 9 | keywords = ["rpc", "async", "networking"] | ||
| 10 | categories = ["network-programming", "asynchronous"] | ||
| 11 | |||
| 12 | [workspace] | ||
| 13 | members = ["urpc-macro"] | ||
| 14 | |||
| 15 | [dependencies] | ||
| 16 | urpc-macro = { path = "urpc-macro" } | ||
| 17 | |||
| 18 | bincode = { version = "2.0.1", features = ["serde"] } | ||
| 19 | bytes = { version = "1.10.1", features = ["serde"] } | ||
| 20 | futures = "0.3.31" | ||
| 21 | serde = { version = "1.0.219", features = ["derive"] } | ||
| 22 | tokio = { version = "1.44.1", features = ["full"] } | ||
| 23 | tokio-util = { version = "0.7.14", features = ["codec"] } | ||
| 24 | |||
| 25 | [dev-dependencies] | ||
| 26 | tokio-test = "0.4" | ||
