forked from Gekkio/gb-hardware-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (48 loc) · 1.17 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
# SPDX-FileCopyrightText: 2017-2023 Joonas Javanainen <[email protected]>
#
# SPDX-License-Identifier: CC0-1.0
[workspace]
members = ["backend", "deploy", "devserver", "site", "tools"]
resolver = "2"
[workspace.package]
version = "0.0.0"
authors = ["Joonas Javanainen <[email protected]>"]
edition = "2021"
publish = false
[workspace.dependencies]
anyhow = "1.0.79"
axum = "0.7.4"
aws-config = "1.1.2"
aws-sdk-s3 = "1.11.0"
base64 = "0.21.7"
clap = "4.5.1"
csv = "1.3.0"
cursive = { version = "0.20.0", default-features = false, features = ["crossterm-backend"] }
filetime = "0.2.23"
gbhwdb-backend = { path = "backend" }
glob = "0.3.1"
grass = { version = "0.13.1", default-features = false }
image = "0.24.8"
itertools = "0.12.0"
log = "0.4.20"
maud = "0.26.0"
md-5 = "0.10.6"
pulldown-cmark = "0.9.3"
rayon = "1.10.0"
regex = "1.10.2"
retro-dat = { git = "https://github.com/Gekkio/retro-dat.git" }
serde = "1.0.195"
serde_json = "1.0.111"
simplelog = "0.12.1"
slug = "0.1.5"
strsim = "0.11.0"
swc_common = "=0.33.20"
swc_css = "=0.157.39"
time = "0.3.31"
tokio = "1.37.0"
tower-http = "0.5.1"
walkdir = "2.5.0"
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 2