-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (39 loc) · 1 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
[package]
name = "uncomment"
version = "0.1.1"
authors = ["Niels Sonnich Poulsen <[email protected]>"]
edition = "2018"
[features]
postgres = ["sqlx/postgres", "sea-query/sqlx-postgres"]
[dependencies]
async-std = { version = "1.9", features = ["attributes"] }
# Logging, config, and error handling
dotenv = "0.15"
log = "0.4"
env_logger = "0.8"
thiserror = "1.0"
config = "0.11"
# Dates
chrono = { version = "0.4", features = ["serde"] }
time = "0.2"
# Web service
actix-web = { version = "3", features = ["rustls"] }
actix-cors = "0.5"
actix-files = "0.5"
actix-multipart = "0.3"
tempfile = "3"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Comment import
minidom = "0.13"
# Markdown and HTML sanitazion
pulldown-cmark = "0.8"
ammonia = "3"
# Database
sqlx = { version = "0.5", features = ["runtime-async-std-rustls", "sqlite", "chrono"] }
sea-query = { version = "0.12", features = ["sqlx-sqlite", "with-chrono"] }
# Auth
argonautica = "0.2"
rand = "0.8"
base64 = "0.13"