forked from andrewjj20/post
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 941 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
34
35
36
37
[package]
name = "post"
description="A Publish Subscribe library allowing multiple hosts to register, and subscribe services accross an IP network."
version = "0.0.1-alpha.1"
authors = ["Joshua Job <josh@joshjob.com>"]
edition = '2018'
license = "MIT"
[dependencies]
log = "0.4"
env_logger = "0.7"
futures = { version = "0.3"}
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
serde_bytes = "0.10"
clap = "2.32"
byteorder = "1"
tokio = { version = "0.2", features = ["macros", "stream", "time", "rt-core","sync","io-std"] }
tokio-util = { version = "0.3", features = ["udp","codec"] }
tonic = "^0.3"
prost = "0.6"
bytes = "0.5"
rmp-serde = "0.13"
itertools = "0.8"
hyper = "^0.13.4"
pin-project = "^0.4"
[dev-dependencies]
tokio = { version = "0.2", features = ["macros", "stream", "time", "rt-core","sync","io-std","process"] }
[build-dependencies]
tonic-build = "^0.3"
[[bin]]
name = "post-meetup"
path = "src/bin/post_meetup.rs"