-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (32 loc) · 1012 Bytes
/
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
[package]
name = "media_hoster"
version = "0.1.0"
edition = "2021"
[dependencies]
log = "0.4.17"
env_logger = "0.11.5"
futures-util = { version = "0.3.31", default-features = false, features = ["std"] }
actix-web = { version = "4.3.1", default-features = false, features = ["cookies", "macros"] }
actix-multipart = { version = "0.7.2" }
sqlx = { version = "0.8.2", default-features = false, features = ["macros", "migrate", "time", "sqlite", "runtime-tokio-rustls"] }
time = { version = "0.3.20", features = ["formatting", "serde", "parsing", "serde-well-known"] }
serde = { version = "1.0.152", features = ["derive"] }
argon2 = "0.5.0"
random-string = "1.1.0"
meowhash = "0.3.0"
radix_fmt = "1.0.0"
mime = "0.3.16"
bytesize = "1.2.0"
url-escape = "0.1.1"
maud = "0.26.0"
base_custom = "0.2.0"
regex = "1.7.1"
async-process = "2.3.0"
tokio = { version = "1.41.0", features = ["full"] }
num = "0.4.0"
scopeguard = "1.1.0"
dotenv = "0.15.0"
once_cell = "1.20.2"
filetime = "0.2.25"
tar = "0.4.42"
zstd = "0.13.2"