-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
36 lines (34 loc) · 963 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
[package]
name = "ratings"
description = "Backend for ratings for the Ubuntu app center."
license = "GPL-3.0-only"
authors = ["Canonical"]
version = "0.2.0"
edition = "2021"
rust-version = "1.75.0"
[dependencies]
dotenv = "0.15"
envy = "0.4"
futures = "0.3"
http = "1.0"
hyper = { version = "0.14", features = ["full", "backports", "deprecated"] }
jsonwebtoken = "9.2"
once_cell = "1.19"
prost = "0.12"
prost-types = "0.12"
rand = "0.8"
reqwest = "0.11"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "time"] }
thiserror = "1.0"
time = { version = "0.3", features = ["macros"] }
tokio = { version = "1.35", features = ["full"] }
tokio-postgres = "0.7"
tonic = "0.10"
tonic-reflection = "0.10"
tower = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[build-dependencies]
tonic-build = { version = "0.10", features = ["prost"] }