-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
61 lines (49 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
authors = ["Praveen Perera <[email protected]>"]
build = "build.rs"
description = "Progressive microservices framework for Rust, based on and compatible with moleculerjs/moleculer"
documentation = "https://docs.rs/moleculer"
edition = "2018"
homepage = "https://github.com/primcloud/moleculer-rs"
license = "Apache-2.0"
name = "moleculer"
readme = "README.md"
repository = "https://github.com/primcloud/moleculer-rs"
version = "0.4.0"
[dependencies]
# async
async-trait = "0.1"
tokio = {version = "1.2", features = ["macros", "rt-multi-thread", "sync"]}
# actor framework
act-zero = {version = "0.4", features = ["default-tokio"]}
# nats
async-nats = "0.37"
futures = "0.3"
# error handling
thiserror = "1.0"
# serde
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
# logging
log = {version = "0.4", features = ["serde"]}
# random
rand = "0.8"
# node information
get_if_addrs = "0.5.3"
hostname = "0.4"
sysinfo = "0.31"
# utils
ctrlc = {version = "3.0", features = ["termination"]}
derive_builder = "0.20"
maplit = "1.0"
strum = {version = "0.26", features = ["derive"]}
uuid = {version = "1.10", features = ["serde", "v4"]}
bytes = "1.7"
[build-dependencies]
built = "0.7"
# for examples
[dev-dependencies]
color-eyre = "0.6"
env_logger = "0.11"
eyre = "0.6"