-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (43 loc) · 951 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
38
39
40
41
42
43
44
45
46
47
[package]
name = "rusty-notes"
description = "A markdown web-interface notebook."
repository = "https://github.com/mitnk/rusty-notes"
keywords = ["markdown", "notebook"]
version = "1.4.0"
authors = ["Hugo Wang <[email protected]>"]
categories = ["command-line-utilities"]
license = "MIT"
edition = "2021"
[profile.release]
strip = true
[dependencies]
actix-web = "4"
actix-files = "0.6"
comrak = "0.21"
lazy_static = "1.4"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ttl_cache = "0.5"
futures = "0.3"
base64 = "0.21"
bytes = "1.5"
log = "0.4"
env_logger = "0.11"
dotenv = "0.15"
figment = { version = "0.10", features = ["env"] }
derive_more = "0.99"
walkdir = "2"
rand = "0.8"
syntect = "5.2"
scraper = "0.18"
htmlescape = "0.3"
mime = "0.3"
time = "0.3"
[dependencies.tera]
version = "1"
default-features = false
[dependencies.actix-session]
version = "0.9"
features = ["cookie-session"]
default-features = false