-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 773 Bytes
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
[package]
name = "tonic-server-side-batching"
version = "0.1.0"
authors = ["Eric McBride <ericmcbridedeveloper@gmail.com>"]
edition = "2018"
publish = false
license = "MIT"
[[bin]]
name = "batch-server"
path = "src/batch/server.rs"
[[bin]]
name = "batch-client"
path = "src/batch/client.rs"
[dependencies]
tonic = "0.1.1"
prost = "0.6"
tokio = { version = "0.2", features = ["rt-threaded", "time", "stream", "fs", "sync", "macros", "uds"
] }
futures = { version = "0.3", default-features = false, features = ["alloc"] }
tower = "0.3"
tracing = "0.1.13"
tracing-futures = "0.2.3"
tracing-subscriber = "0.2.2"
futures-util = "0.3.4"
uuid = { version = "0.8", features = ["v4"] }
ringbuf = "0.2.1"
[build-dependencies]
tonic-build = "0.1.1"
[profile.release]
debug=true