-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (36 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
45 lines (36 loc) · 1.13 KB
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
[workspace]
resolver = "3"
members = ["crates/*"]
default-members = ["crates/rd2qmd-cli"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/eitsupi/rd2qmd"
[workspace.dependencies]
# Core dependencies
thiserror = "2"
anyhow = "1"
# CLI dependencies
clap = { version = "4", features = ["derive"] }
# Parallel processing
rayon = "1"
# Serialization (for mdast compatibility)
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
schemars = "0.8"
# Table generation (for Grid Tables)
tabled = { version = "0.20", default-features = false, features = ["std"] }
# External link resolution (optional)
r-description = "0.3.7"
saphyr = "0.0.6"
reqwest = { version = "0.12", features = ["blocking"], default-features = false }
url = "2"
# Testing
insta = { version = "1", features = ["yaml"] }
# Internal crates
rd2qmd-mdast = { version = "0.1.0", path = "crates/rd2qmd-mdast" }
rd-parser = { version = "0.1.0", path = "crates/rd-parser" }
rd2qmd-core = { version = "0.1.0", path = "crates/rd2qmd-core" }
rd2qmd-package = { version = "0.1.0", path = "crates/rd2qmd-package" }