-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
33 lines (31 loc) · 883 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
[package]
name = "ratings"
version = "0.1.0"
edition = "2021"
rust-version = "1.69.0"
[dependencies]
dotenv = "0.15.0"
envy = "0.4.2"
futures = "0.3.30"
http = "1.0.0"
hyper = { version = "0.14.26", features = ["full"] }
jsonwebtoken = "8.3.0"
once_cell = "1.19.0"
prost = "0.12.3"
prost-types = "0.12.3"
rand = "0.8.5"
reqwest = "0.11.23"
serde = { version = "1.0.195", features = ["derive"] }
sha2 = "0.10.7"
sqlx = { version = "0.7.3", features = ["runtime-tokio-rustls", "postgres", "time"] }
thiserror = "1.0.56"
time = { version = "0.3.31", features = ["macros"] }
tokio = { version = "1.28.2", features = ["full"] }
tokio-postgres = "0.7.8"
tonic = "0.10.2"
tonic-reflection = "0.10.2"
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[build-dependencies]
tonic-build = { version = "0.10.2", features = ["prost"] }