-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "starpc"
version = "0.49.9"
edition = "2021"
rust-version = "1.75"
license = "MIT"
repository = "https://github.com/aperturerobotics/starpc"
description = "Streaming protobuf RPC framework"
keywords = ["rpc", "protobuf", "streaming", "grpc"]
categories = ["network-programming", "asynchronous"]
include = ["srpc/**/*.rs", "rpcstream/*.rs", "Cargo.toml", "LICENSE", "!node_modules/**", "!vendor/**"]
[features]
default = []
build = ["dep:prost-build", "dep:protoc-bin-vendored"]
[lib]
path = "srpc/lib.rs"
[workspace]
resolver = "2"
members = ["echo"]
[workspace.package]
version = "0.49.0"
edition = "2021"
rust-version = "1.75"
license = "MIT"
[workspace.dependencies]
starpc = { path = "." }
prost = "0.14"
bytes = "1.9"
tokio = { version = "1", features = ["io-util", "sync", "rt", "macros", "time"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
thiserror = "2.0"
async-trait = "0.1"
pin-project-lite = "0.2"
scopeguard = "1.2"
[dependencies]
prost = { workspace = true }
bytes = { workspace = true }
tokio = { workspace = true }
tokio-util = { workspace = true }
futures = { workspace = true }
thiserror = { workspace = true }
async-trait = { workspace = true }
pin-project-lite = { workspace = true }
scopeguard = { workspace = true }
prost-build = { version = "0.14", optional = true }
protoc-bin-vendored = { version = "3.2", optional = true }