aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 13032d9c26794eab1da37aedf4e12b5b7c107e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "urpc"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <[email protected]>"]
description = "A minimalistic RPC framework for Rust"
license = "MIT OR Apache-2.0"
repository = "https://github.com/your-username/urpc"
keywords = ["rpc", "async", "networking"]
categories = ["network-programming", "asynchronous"]

[workspace]
members = ["urpc-macro"]

[dependencies]
urpc-macro = { path = "urpc-macro" }

bincode = { version = "2.0.1", features = ["serde"] }
bytes = { version = "1.10.1", features = ["serde"] }
futures = "0.3.31"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.44.1", features = ["full"] }
tokio-util = { version = "0.7.14", features = ["codec"] }

[dev-dependencies]
tokio-test = "0.4"