-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (77 loc) · 2.48 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (77 loc) · 2.48 KB
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
80
[workspace]
resolver = "3"
members = [
"crawler",
"entrypoint",
"retailers",
"mongodb_connector",
"common",
"metrics",
"email",
"semantic_matcher"
]
[profile.release]
strip = true
opt-level = "s"
lto = true
[workspace.dependencies]
crawler = { path = "./crawler" }
retailers = { path = "./retailers" }
mongodb_connector = { path = "./mongodb_connector" }
common = { path = "./common" }
metrics = { path = "./metrics" }
discord = { path = "./discord" }
image_cache = { path = "./image_cache" }
openid_connect = { path = "./openid_connect" }
email = { path = "./email" }
semantic_matcher = { path = "./semantic_matcher" }
reqwest = { version = "0.13.4", features = ["json", "cookies", "gzip", "http2", "rustls"] }
reqwest-retry = "0.9.1"
reqwest-middleware = { version = "0.5.2", features = ["json"] }
serde = "1.0.228"
serde_json = "1.0.150"
serde_with = "3.20.0"
tokio = "1.52.2"
scraper = { version = "0.27.0", features = ["atomic"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
async-trait = "0.1.88"
mongodb = "3.7.0"
axum = "0.8.9"
axum-extra = "0.12.6"
axum-otel-metrics = "0.14.1"
tower-http = "0.7.0"
tower = "0.5.3"
tower_governor = { version = "0.8.0", features = ["axum"] }
regex = "1.12.3"
thiserror = "2.0.18"
serenity = { version = "0.12.5", features = ["model"] }
urlencoding = "2.1.3"
strum = "0.28.0"
strum_macros = "0.28.0"
base64 = "0.23.0"
futures = "0.3.32"
clap = { version = "4.6.1", features = ["derive"] }
chrono = "0.4.44"
# opentelemetry versions must be kept in tandem
opentelemetry = { version = "0.32.0", features = ["metrics"] }
opentelemetry-otlp = "0.32.0"
opentelemetry_sdk = "0.32.1"
lru = "0.18.0"
itertools = "0.15.0"
# note: don't use this library to do anything
# it's only here to solve site ground challenges
sha1 = "0.11.0"
openidconnect = { version = "4.0.1", features = ["reqwest"] }
rand = "0.10.1"
sha2 = "0.11.0"
lettre = { version = "0.11.22", default-features = false, features = ["builder", "hostname", "pool", "smtp-transport", "tokio1", "tokio1-rustls", "aws-lc-rs", "rustls-platform-verifier"] }
bm25 = { version = "2.3.2", features = ["parallelism"] }
csv = "1.4.0"
web-bot-auth = "0.7.0"
# indexmap is only used for web-bot-auth, their impl requires IndexMap return type
indexmap = "2.14.0"
# ed25519-dalek is used to generate padded signing key from PKCS PEM file
ed25519-dalek = { version = "3.0.0", features = ["pkcs8", "pem"] }
wreq = { version = "6.0.0-rc", features = ["cookies", "gzip", "json"] }
wreq-util = "3.0.0-rc"