This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
69 lines (55 loc) · 1.72 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
63
64
65
66
67
68
69
[package]
name = "triox"
version = "0.1.0"
authors = ["Aaron Erhardt <aaron.erhardt@t-online.de>", "Aravinth Manivannan <realaravinth@batsense.net>"]
edition = "2021"
description = "An open source cloud server that focuses on speed, reliability and security"
repository = "https://github.com/Trioxidation/Triox"
readme = "README.md"
license = "AGPL-3.0-or-later"
build = "build.rs"
default-run = "triox"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "triox"
path = "./src/main.rs"
[[bin]]
name = "tests-migrate"
path = "./src/tests-migrate.rs"
[dependencies]
# config
config = "0.13"
# random
rand = "0.8"
# concurrent map
dashmap = "5.3"
# log
log = "0.4"
env_logger = "0.9"
# serde
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# actix
mime = "0.3"
actix-rt = "2"
actix-files = "0.6.0"
actix-multipart = "0.4.0"
actix-http = "3.0.0"
actix-governor = "0.3"
actix-optional-middleware = { version = "0.1", git = "https://github.com/realaravinth/actix-optional-middleware" }
actix-web = { version = "4.0.0", features = ["openssl"] }
actix-identity = "0.4.0-beta.2"
actix-service = "2.0"
openssl = { version = "0.10.60", features = ["vendored"] }
sqlx = { version = "0.6", features = [ "runtime-actix-rustls", "postgres", "time", "offline" ] }
argon2-creds = { branch = "master", git = "https://github.com/realaravinth/argon2-creds" }
lazy_static = "1.4"
my-codegen = { package = "actix-web-codegen", git ="https://github.com/realaravinth/actix-web" }
# futures
futures = "0.3"
tokio = { version = "1.20", features = ["fs", "time"] }
tokio-stream = "0.1.7"
# argument parsing
clap = { version = "3.2", features = ["cargo"] }
# derive macros
derive_more = "0.99"