forked from torrust/torrust-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (37 loc) · 1.2 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
[package]
name = "torrust-index-backend"
version = "1.0.0"
authors = ["Mick van Dijke <[email protected]>", "Wesley Bijleveld <[email protected]>"]
edition = "2021"
[profile.dev.package.sqlx-macros]
opt-level = 3
[dependencies]
actix-web = "4.0.0-beta.8"
actix-multipart = "0.4.0-beta.5"
actix-cors = "0.6.0-beta.2"
async-trait = "0.1.52"
async-std = "1.10.0"
futures = "0.3.5"
sqlx = { version = "0.5.7", features = [ "runtime-tokio-native-tls", "sqlite", "mysql", "migrate", "time" ] }
config = "0.11"
toml = "0.5"
derive_builder = "0.10"
derive_more = "0.99"
serde = { version = "1.0", features = ["rc"] }
serde_derive = "1"
serde_json = "1"
serde_yaml = "0.8.17"
serde_bencode = "0.2.3"
serde_bytes = "0.11"
urlencoding = "2.1.0"
argon2 = "0.4.1"
rand_core = { version = "0.6", features = ["std"] }
chrono = "0.4.19"
sanitize-filename = "0.3.0"
jsonwebtoken = "7.2.0"
sha-1 = "0.9.8"
reqwest = { version = "0.11.4", features = [ "json" ] }
tokio = {version = "1.13", features = ["macros", "io-util", "net", "time", "rt-multi-thread", "fs", "sync", "signal"]}
lettre = { version = "0.10.0-rc.3", features = ["builder", "tokio1", "tokio1-rustls-tls", "smtp-transport"]}
sailfish = "0.3.3"
regex = "1.6.0"