-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
33 lines (29 loc) · 823 Bytes
/
Cargo.toml
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
27
28
29
30
31
32
33
[package]
name = "may_rpc"
version = "0.1.6"
edition = "2021"
authors = ["Xudong Huang <[email protected]>"]
license = "MIT"
documentation = "https://docs.rs/may_rpc"
homepage = "https://github.com/Xudong-Huang/may_rpc"
repository = "https://github.com/Xudong-Huang/may_rpc"
keywords = ["rpc", "protocol", "remote", "procedure", "serialize"]
readme = "README.md"
description = "RPC framework for Rust based on coroutine."
[dependencies]
may = "0.3"
log = "0.4"
bytes = "1"
bincode = "1"
byteorder = "1"
thiserror = "1"
co_managed = "0.1"
may_waiter = "0.1"
serde = { version = "1", features = ["derive"] }
may_rpc_derive = { path = "./may_rpc_derive", version = "0.1" }
[dev-dependencies]
env_logger = "0.11"
[workspace]
members = ["may_rpc_test", "may_rpc_derive"]
# [patch.crates-io]
# may = { path = "../may" }