-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (58 loc) · 1.59 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
[package]
name = "ucsc_menu"
version = "0.1.0"
edition = "2021"
# opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = [
"macros",
"net",
"parking_lot",
"rt",
"signal",
"sync",
"parking_lot",
] }
reqwest = { version = "0.11.27", default-features = false, features = [
"rustls-tls",
"gzip",
] }
juniper = { version = "0.16.1", features = ["schema-language", "chrono"] }
scraper = "0.19.0"
bitflags = "2.5.0"
rusty-money = { version = "0.4.1", features = ["iso"] }
chrono = { version = "0.4.37", features = [
"serde",
"std",
], default-features = false }
url = "2.5.0"
futures = "0.3.30"
serde_json = "1.0.116"
regex = "1.10.4"
serde = "1.0.199"
tracing = "0.1.40"
governor = { version = "0.6.3", features = [
"jitter",
"quanta",
"std",
], default-features = false }
firestore = "0.41.0"
futures-locks = "0.7.1"
juniper_axum = { version = "0.1.0", features = ["subscriptions"] }
axum = { version = "0.7.5", features = [
"http1",
"http2",
], default-features = false }
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
tower-http = { version = "0.5.2", features = ["compression-full", "cors"] }
juniper_graphql_ws = "0.4.0"
pretty_env_logger = "0.5.0"
log = { version = "0.4.21" }
async-compression = { version = "0.4.9", features = ["gzip"] }
[dev-dependencies]
tracing = "0.1.40"
tokio-scoped = "0.2.0"
[target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.mimalloc]
version = "0.1"
default-features = false