-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 902 Bytes
/
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
[package]
name = "shark-note"
version = "0.1.0"
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.3", features = ["secrets", "json"] }
rocket-session-store = "0.2.0"
rocket_dyn_templates = {version = "0.1.0-rc.3", features = ["tera"]}
rocket_http = "0.4.11"
rocket-recaptcha-v3 = "0.3.2"
markdown-it = "0.6.0"
html_editor = "0.6.1"
serde_json = "1.0.95"
serde = { version = "1", features = ["derive"] }
dirs = "5.0.0"
simplelog = "0.12.1"
log = "0.4.20"
sha256 = "1.4.0"
lettre = "0.11.0"
toml = "0.8.4"
strfmt = "0.2.4"
rand = "0.8.5"
rocket-multipart-form-data = "0.10.6"
csrf = "0.4.1"
[dependencies.sqlx]
version = "0.6.0"
default-features = false
features = ["macros", "offline", "migrate", "json"]
[dependencies.rocket_db_pools]
version = "=0.1.0-rc.3"
features = ["sqlx_sqlite"]