-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
84 lines (79 loc) · 1.97 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
edition = "2021"
name = "ruforo"
version = "0.1.0"
[dependencies]
actix = "^0.13"
actix-files = "^0.6"
actix-multipart = "^0.4"
actix-session = { version = "^0.7", features = ["cookie-session"] }
actix-utils = "^3"
actix-web = "^4"
actix-web-actors = "^4"
anyhow = "^1"
argon2 = "0.4.1"
askama = { version = "^0.11", default-features = false, features = [
"with-actix-web",
"mime",
"mime_guess",
] }
askama_actix = "^0.13"
async-trait = "^0.1" # dyn ChatLayer async support
bitflags = "^1"
blake3 = "1.3.0"
chrono = { version = "^0.4", features = ["serde"] }
dashmap = "5.3.3"
derive_more = "^0"
dissimilar = "^1"
dotenv = "0.15.0"
env_logger = "0.9.0"
ffmpeg-next = "5.1.1"
futures = { version = "0.3.19", default-features = false }
futures-util = { version = "0.3.19", default-features = false }
google-authenticator = { version = "0.3.0", features = ["with-qrcode"] }
#lettre = { version = "0.10.0-rc.4", default-features = false, features = [
# "rustls",
# "smtp-transport",
# "pool",
# "hostname",
# "builder",
#] }
linkify = "^0.9" # BbCode parser
log = "0.4.14"
mime = "0.3.16"
nom = "^7" # BbCode parser
once_cell = "1.9.0"
phf = { version = "^0.11", features = ["macros"] }
rand = "0.8.4"
rctree = "0.4.0" # BbCode lexer
redis = { version = "^0.21", features = [
"tokio-comp",
"tokio-native-tls-comp",
] } # XF Session compat
regex = "1.5" # XF Session parser
rusoto_core = "^0.48"
rusoto_s3 = "^0.48"
sea-orm = { version = "^0.8", features = [
"sqlx-postgres",
"sqlx-mysql",
"runtime-actix-rustls",
"macros",
], default-features = false } # XF MySQL compat
serde = "^1.0"
serde_json = "^1.0"
serde_php = "^0" # XF Compat
url = "^2"
uuid = { version = "^1.1", default-features = false, features = ["v4"] }
[dev-dependencies]
actix-rt = "2.7.0"
actix-test = "0.1.0"
awc = "3.0.1"
[profile.debugo]
debug = true
inherits = "release"
[[bin]]
name = "ruforo"
path = "src/bin/forum/main.rs"
[[bin]]
name = "xf-chat"
path = "src/bin/xf_chat/main.rs"