-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
61 lines (57 loc) · 1.49 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
[workspace]
members = ["crates/*"]
# TODO: Update to 3 when targeting 1.84+ (probably 1.85 with new edition)
resolver = "2"
[workspace.package]
edition = "2021"
# NOTE: See /rust-toolchain.toml when updating.
rust-version = "1.82"
license = "AGPL-3.0-or-later"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[workspace.dependencies]
aho-corasick = "1.1.3"
aide = "0.14.0"
anyhow = "1.0.55"
axum = "0.8.1"
axum-extra = "0.10.0"
bb8 = "0.9.0"
# Needs to be updated to axum^0.8
# console-subscriber = "0.4.1"
either = "1.8.0"
figment = "0.10.8"
fs4 = "0.12"
futures = { version = "0.3.25", default-features = false }
git-version = "0.3.9"
graphql_client = "0.14.0"
image = { version = "0.25.1", default-features = false }
image_dds = { version = "0.7.0", default-features = false }
ironworks = { git = "https://github.com/ackwell/ironworks.git" }
ironworks_schema = { git = "https://github.com/ackwell/ironworks.git" }
itertools = "0.14.0"
# Pending release for axum^0.8
# maud = "0.26.0"
maud = { git = "https://github.com/lambda-fairy/maud.git" }
mime = "0.3.17"
mini-moka = "0.10.0"
nom = "7.1.1"
nonempty = "0.11.0"
regex = "1.10.5"
reqwest = "0.12.3"
rusqlite = "0.32.1"
schemars = "0.8.21"
sea-query = { version = "0.32", default-features = false }
sea-query-rusqlite = "0.7.0"
seahash = "4.1.0"
serde = "1.0.137"
serde_json = "1.0.95"
strum = "0.26.2"
thiserror = "2.0.3"
tokio = "1.32.0"
tokio-util = "0.7.4"
tower-http = "0.6.2"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
uuid = "1.3.2"