-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
65 lines (56 loc) · 1.37 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
[package]
name = "polymod"
version = "0.1.3-alpha"
authors = ["vicky5124 <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# https://github.com/actix/actix-extras/pull/144
actix-identity = "0.3"
tracing = "0.1"
tracing-subscriber = "0.2"
time = "0.2"
serde_json = "1"
# https://github.com/Bunogi/darkredis/pull/25
darkredis = "0.7"
serde-aux = "2"
toml = "0.5"
hex = "0.4"
rust-crypto = "0.2"
base64 = "0.13"
actix-multipart = "0.3" # 0.4 beta
futures = "0.3"
sanitize-filename = "0.2"
semver = "0.11"
actix-files = "0.5" # 0.6 beta
sha2 = "0.9"
strsim = "0.10"
bitflags = "1.2"
rand = "0.8"
dotenv = "0.15"
[dependencies.actix-web]
version = "3" # 4
features = ["secure-cookies", "rustls"]
[dependencies.actix-ratelimit]
version = "0.3" # https://github.com/TerminalWitchcraft/actix-ratelimit/pull/13
default-features = false
features = ["redis-store"]
[dependencies.tokio]
version = "0.2" # 1
features = ["fs"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.handlebars]
version = "3.0"
features = ["dir_source"]
[dependencies.reqwest]
version = "0.10" # 0.11
features = ["json"]
[dependencies.sqlx]
version = "0.4" # 0.5
default-features = false
features = ["runtime-actix-rustls", "macros", "postgres", "chrono", "offline"]
#
#[profile.dev]
#panic = "abort"