-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 897 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
[package]
name = "leetcode_datahouse"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = [ "json" ] }
tokio = { version = "1", features = [ "full" ] }
serde = { version = "1.0", features = [ "derive" ] }
shellwords = "1.1.0"
fred = "6.3"
config = "0.13.2"
diesel = { version = "2.1.0", features = [ "postgres" ] }
dotenvy = "0.15.6"
serde_json = "1.0.95"
nutype = "0.1.1"
tonic = "0.7"
prost = "0.10"
env_logger = "0.10.0"
log = { version = "0.4.20", features = [ "max_level_info" ] }
error-stack = "0.4.1"
async-trait = "0.1.74"
[build-dependencies]
tonic-build = "0.7"
[workspace]
members = [ "controller", "grpc", "configs", "redis" , "producer", "errors", "consumer", "queues", "consts", "models"]