-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
29 lines (27 loc) · 812 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
[package]
name = "isabelroses-website"
version = "0.3.0"
license = "MIT"
description = "my lovely website"
homepage = "https://github.com/isabelroses/website"
authors = ["Isabel Roses <[email protected]>"]
edition = "2021"
[dependencies]
axum = "0.7.7"
dotenv = "0.15.0"
lazy_static = "1.5.0"
markdown = "1.0.0-alpha.21"
mime_guess = "2.0.5"
nom = "7.1.3"
atom_syndication = "0.12.5"
rust-embed = { version = "8.5.0", features = ["include-exclude", "compression"] }
serde = { version = "1.0.132", features = ["derive"] }
serde_json = "1.0.132"
tera = { version = "1.20.0", default-features = false }
tokio = { version = "1.41.1", features = ["rt-multi-thread"] }
chrono = "0.4.38"
estimated_read_time="1.0.0"
[lints.clippy]
all = "warn"
pedantic = "warn"
similar_names = { level = "allow", priority = 1 }