-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 852 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (39 loc) · 852 Bytes
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
[package]
name = "rusty-notes"
description = "A markdown web-interface notebook."
repository = "https://github.com/mitnk/rusty-notes"
keywords = ["markdown", "notebook"]
version = "1.6.3"
authors = ["Hugo Wang <w@mitnk.com>"]
categories = ["command-line-utilities"]
license = "MIT"
edition = "2021"
[profile.release]
strip = true
[dependencies]
actix-web = "4"
actix-files = "0.6"
comrak = "0.52"
lazy_static = "1.5"
regex = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ttl_cache = "0.5"
futures = "0.3"
base64 = "0.22"
bytes = "1.11"
log = "0.4"
env_logger = "0.11"
dotenv = "0.15"
figment = { version = "0.10", features = ["env"] }
derive_more = "2.1"
walkdir = "2"
rand = "0.10"
syntect = "5.3"
scraper = "0.27"
htmlescape = "0.3"
mime = "0.3"
time = "0.3"
[dependencies.tera]
version = "1"
default-features = false