-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
79 lines (71 loc) · 1.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "ratings"
description = "Ubuntu App Center ratings service"
license = "GPL-3.0-only"
authors = ["Canonical"]
version = "0.0.3"
edition = "2021"
[dependencies]
argon2 = "0.5.3"
axum = "0.6.20" # this *must* be pinned because 0.7.x relies on hyper 1.x causing a ton of type conversion issues
base64 = "0.22.0"
chrono = { version = "0.4.34", default-features = false, features = [
"std",
"clock",
"serde",
] }
dotenvy = "0.15"
envy = "0.4"
futures = "0.3"
http = "1.0"
http-body = "0.4.6"
hyper = { version = "0.14", features = ["full", "backports", "deprecated"] }
jsonwebtoken = "9.2"
log = { version = "0.4.21", features = ["serde"] }
once_cell = "1.19"
prost = "0.12"
prost-types = "0.12"
rand = "0.8"
reqwest = "0.11"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
snapd = { git = "https://github.com/ZoopOTheGoop/snapd-rs", branch = "framework" }
sqlx = { version = "0.7", features = [
"runtime-tokio-rustls",
"postgres",
"time",
] }
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0"
time = { version = "0.3.36", features = ["macros"] }
tokio = { version = "1.36", 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]
git2 = { version = "0.18.2", default-features = false }
tonic-build = { version = "0.11", features = ["prost"] }
[dev-dependencies]
cucumber = { version = "0.20.2", features = ["libtest", "tracing"] }
lazy_static = "1.4.0"
regex = "1.10.3"
serde_json = "1.0.114"
[[test]]
name = "voting"
harness = false
[[test]]
name = "authentication"
harness = false
[[test]]
name = "chart"
harness = false
[[test]]
name = "log_level"
harness = false
[[test]]
name = "api_info"
harness = false