-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (66 loc) · 2.05 KB
/
Cargo.toml
File metadata and controls
68 lines (66 loc) · 2.05 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
[package]
name = "alumulemu"
version = "0.2.1"
edition = "2024"
license = "AGPL-3.0"
authors = [
"Cappy Ishihara <cappy@cappuchino.xyz>",
"Eri Ishihara <eri@nijika.dev>",
]
description = "Nintendo Horizon repository manager"
repository = "https://github.com/RyouVC/alumulemu"
readme = "README.md"
keywords = ["nintendo", "switch", "horizon", "repository", "manager"]
rust-version = "1.85.1"
[profile.release]
lto = true
strip = true
opt-level = 3
panic = 'abort'
codegen-units = 1
[dependencies]
axum = { version = "0.8.1", features = ["multipart", "query", "json", "macros"] }
serde = "1.0.219"
serde_json = "1.0.140"
# We'll support both RocksDB, SurrealKV, and TiKV
# might cause binary bloat but its fiiine
surrealdb = { version = "2.2.2", features = ["kv-rocksdb", "kv-surrealkv", "kv-tikv"] }
tokio = { version = "1.44.0", features = ["full"] }
tokio-util = { version = "0.7.13", features = ["io"] }
tower-http = { version = "0.6.2", features = ["trace", "fs"] }
tracing = { version = "0.1.41", features = ["log", "async-await"] }
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"chrono",
"serde_json",
] }
tower = "0.5.2"
thiserror = "2.0.12"
color-eyre = "0.6"
regex = "1"
chrono = "0.4.40"
struson = { version = "0.6.0", features = ["serde"] }
binrw = "0.14.1"
jwalk = "0.8.1"
reqwest = { version = "0.12.14", features = ["cookies", "json", "rustls-tls", "stream"] }
futures-util = "0.3.31"
base64 = "0.22.1"
http = "1.3.1"
argon2 = "0.5.3"
clap = { version = "4.5.32", features = ["derive", "env"] }
dotenvy = { version = "0.15.7", features = ["clap", "cli"] }
mime_guess = "2.0.5"
cron = { version = "0.15.0", features = ["serde"] }
nx-archive = "0.1.1"
once_cell = "1.21.1"
futures = "0.3.31"
notify = "6.1.1" # For filesystem monitoring
dirs = "6.0.0"
scraper = { version = "0.23.1", features = ["serde"] }
tempfile = "3.19.1"
async_zip = { version = "0.0.17", features = ["full"] }
ulid = { version = "1.2.1", features = ["serde"] }
urlencoding = "2.1.3"
url = { version = "2.5.4", features = ["serde"] }
rand = "0.9.1"
bytesize = "2.0.1"