This repository was archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.2 KB
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
[package]
name = "hbp"
version = "0.1.0"
authors = ["Phan Huy Hoàng <hoangph271@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.2", default-features = true, features = [
"json",
"secrets",
] }
chrono = { version = "0.4.24", features = ["serde"] }
log = "0.4.17"
fern = { version = "0.6.2", features = ["colored"] }
httpstatus = "0.1.2"
anyhow = "1.0.71"
pulldown-cmark = { version = "0.9.2", default-features = false, features = [
"simd",
] }
serde_derive = "1.0.160"
mustache = "0.9.0"
jsonwebtoken = "8.3.0"
serde = { version = "1.0.160", features = ["derive"] }
tempfile = "3.5.0"
dotenv = "0.15.0"
dotenv_codegen = "0.15.0"
serde_json = "1.0.96"
nanoid = "0.4.0"
bcrypt = "0.14.0"
reqwest = { version = "0.11.17", features = ["multipart", "json"] }
futures = "0.3.28"
glob = "0.3.1"
regex = "1.8.1"
urlencoding = "2.1.2"
async-std = { version = "1.12.0", features = ["tokio1"] }
schemars = "0.8.12"
thiserror = "1.0.40"
async-recursion = "1.0.4"
rand = "0.8.5"
image = "0.24.6"
mime_guess = "2.0.4"
sled = "0.34.7"
[profile.dev]
overflow-checks = true
[profile.release]
overflow-checks = true