roxy-cli/Cargo.toml

19 lines
653 B
TOML
Raw Normal View History

2024-01-17 09:26:21 +00:00
[package]
name = "roxy_cli"
version = "0.1.0"
edition = "2021"
[dependencies]
glob = "0.3.1"
syntect = "5.1.0"
2024-02-01 10:37:36 +00:00
roxy_markdown_parser = { git = "https://fem.mint.lgbt/kitsunecafe/roxy-markdown-parser.git" }
roxy_tera_parser = { git = "https://fem.mint.lgbt/kitsunecafe/roxy-tera-parser.git" }
roxy_markdown_tera_rewriter = { git = "https://fem.mint.lgbt/kitsunecafe/roxy-markdown-tera-rewriter.git" }
2024-02-03 01:20:27 +00:00
roxy_syntect = { git = "https://fem.mint.lgbt/kitsunecafe/roxy-syntect.git" }
2024-02-01 10:37:36 +00:00
roxy_core = { git = "https://fem.mint.lgbt/kitsunecafe/roxy-core.git" }
2024-01-17 09:26:21 +00:00
clap = { version = "4.4.17", features = ["derive"] }
2024-01-24 18:22:17 +00:00
toml = "0.8.8"
tera = "1.19.1"
2024-01-24 19:36:59 +00:00
serde = "1.0.195"
2024-01-17 09:26:21 +00:00