@@ -3,7 +3,10 @@ name = "torrust-index-backend"
3
3
description = " The backend (API) for the Torrust Index project."
4
4
license-file = " COPYRIGHT"
5
5
version = " 2.0.0-alpha.2"
6
- authors = [" Mick van Dijke <mick@dutchbits.nl>" , " Wesley Bijleveld <wesley@dutchbits.nl>" ]
6
+ authors = [
7
+ " Mick van Dijke <mick@dutchbits.nl>" ,
8
+ " Wesley Bijleveld <wesley@dutchbits.nl>" ,
9
+ ]
7
10
repository = " https://github.com/torrust/torrust-index-backend"
8
11
edition = " 2021"
9
12
default-run = " main"
@@ -17,7 +20,13 @@ actix-multipart = "0.6"
17
20
actix-cors = " 0.6"
18
21
async-trait = " 0.1"
19
22
futures = " 0.3"
20
- sqlx = { version = " 0.6" , features = [ " runtime-tokio-native-tls" , " sqlite" , " mysql" , " migrate" , " time" ] }
23
+ sqlx = { version = " 0.6" , features = [
24
+ " runtime-tokio-native-tls" ,
25
+ " sqlite" ,
26
+ " mysql" ,
27
+ " migrate" ,
28
+ " time" ,
29
+ ] }
21
30
config = " 0.13"
22
31
toml = " 0.7"
23
32
derive_more = " 0.99"
@@ -32,9 +41,24 @@ rand_core = { version = "0.6", features = ["std"] }
32
41
chrono = { version = " 0.4" , default-features = false , features = [" clock" ] }
33
42
jsonwebtoken = " 8.3"
34
43
sha-1 = " 0.10"
35
- reqwest = { version = " 0.11" , features = [ " json" , " multipart" ] }
36
- tokio = {version = " 1.28" , features = [" macros" , " io-util" , " net" , " time" , " rt-multi-thread" , " fs" , " sync" , " signal" ]}
37
- lettre = { version = " 0.10" , features = [" builder" , " tokio1" , " tokio1-rustls-tls" , " tokio1-native-tls" , " smtp-transport" ]}
44
+ reqwest = { version = " 0.11" , features = [" json" , " multipart" ] }
45
+ tokio = { version = " 1.28" , features = [
46
+ " macros" ,
47
+ " io-util" ,
48
+ " net" ,
49
+ " time" ,
50
+ " rt-multi-thread" ,
51
+ " fs" ,
52
+ " sync" ,
53
+ " signal" ,
54
+ ] }
55
+ lettre = { version = " 0.10" , features = [
56
+ " builder" ,
57
+ " tokio1" ,
58
+ " tokio1-rustls-tls" ,
59
+ " tokio1-native-tls" ,
60
+ " smtp-transport" ,
61
+ ] }
38
62
sailfish = " 0.6"
39
63
regex = " 1.8"
40
64
pbkdf2 = { version = " 0.12" , features = [" simple" ] }
@@ -46,12 +70,12 @@ text-to-png = "0.2"
46
70
indexmap = " 1.9"
47
71
thiserror = " 1.0"
48
72
binascii = " 0.1"
49
- axum = { version = " 0.6.18" , features = [" multipart" ]}
73
+ axum = { version = " 0.6.18" , features = [" multipart" ] }
50
74
hyper = " 0.14.26"
51
- tower-http = { version = " 0.4.0" , features = [" cors" ]}
75
+ tower-http = { version = " 0.4.0" , features = [" cors" ] }
52
76
53
77
[dev-dependencies ]
54
78
rand = " 0.8"
55
79
tempfile = " 3.5"
56
- uuid = { version = " 1.3" , features = [ " v4" ] }
80
+ uuid = { version = " 1.3" , features = [" v4" ] }
57
81
which = " 4.4"
0 commit comments