-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (29 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
37 lines (29 loc) · 1.03 KB
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
34
35
36
37
[workspace]
members = ["libs/*", "frpc/*", "libs/lipi/macros", "libs/lipi/derive"]
[package]
name = "frpc"
version = "0.1.0"
edition = "2024"
license = "Apache-2.0"
authors = ["Nur <nurmohammed840@gmail.com>"]
repository = "https://github.com/nurmohammed840/frpc.rs"
keywords = ["rpc"]
description = "RPC framework"
exclude = ["/examples", "/tests", ".*"]
[dependencies]
databuf = { git = "https://github.com/nurmohammed840/databuf.rs" }
async-gen = "0.2.3"
std-lib = { version = "0.1", path = "libs/std-lib" }
frpc-macros = { version = "0.1", path = "frpc/macros" }
frpc-message = { version = "0.1", path = "frpc/message" }
frpc-transport-core = { version = "0.1", path = "frpc/transport-core" }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
frpc-transport-http = { path = "frpc/transport-http" }
frpc-codegen-client = { path = "frpc/codegen-client" }
frpc-transport = { path = "frpc/transport" }
# [profile.dev.package."frpc-codegen-client"]
# opt-level = 3
[[test]]
name = "rpc"
harness = false