aboutsummaryrefslogtreecommitdiff
path: root/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 /Cargo.toml
Initial commit - extracted urpc from monorepo
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml26
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]
2name = "urpc"
3version = "0.1.0"
4edition = "2021"
5authors = ["Your Name <[email protected]>"]
6description = "A minimalistic RPC framework for Rust"
7license = "MIT OR Apache-2.0"
8repository = "https://github.com/your-username/urpc"
9keywords = ["rpc", "async", "networking"]
10categories = ["network-programming", "asynchronous"]
11
12[workspace]
13members = ["urpc-macro"]
14
15[dependencies]
16urpc-macro = { path = "urpc-macro" }
17
18bincode = { version = "2.0.1", features = ["serde"] }
19bytes = { version = "1.10.1", features = ["serde"] }
20futures = "0.3.31"
21serde = { version = "1.0.219", features = ["derive"] }
22tokio = { version = "1.44.1", features = ["full"] }
23tokio-util = { version = "0.7.14", features = ["codec"] }
24
25[dev-dependencies]
26tokio-test = "0.4"