-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 944 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 944 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
[package]
name = "lake2html"
version = "0.1.0"
edition = "2021"
authors = ["lake2html contributors"]
description = "A CLI tool to convert Yuque Lake documents into HTML"
license = "MIT OR Apache-2.0"
repository = "https://github.com/your-username/lake2html"
keywords = ["yuque", "lake", "html", "converter", "cli"]
categories = ["command-line-utilities", "text-processing"]
[[bin]]
name = "lake2html"
path = "src/main.rs"
[lib]
name = "lake2html"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
scraper = "0.18"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
askama = { version = "0.12", features = ["with-axum"] }
anyhow = "1.0"
regex = "1.0"
urlencoding = "2.1"
uuid = { version = "1.0", features = ["v4"] }
html-escape = "0.2"
thiserror = "1.0"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }