-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 787 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
[package]
name = "forest"
version = "0.1.4"
edition = "2021"
authors = ["Nicholas D. Crosbie"]
description = "Explore and summarise Rust projects"
license = "MIT"
homepage = "https://github.com/Rbfinch/forest"
documentation = "https://github.com/Rbfinch/forest"
repository = "https://github.com/Rbfinch/forest"
readme = "README.md"
categories = ["command-line-utilities", "development-tools"]
keywords = ["Rust", "analyse", "summarise", "codebase"]
[dependencies]
clap = { version = "4.5.34", features = ["derive"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
syn = { version = "2.0.100", features = ["full", "visit", "extra-traits"] }
quote = "1.0.40"
visit = "0.1.0"
proc-macro2 = "1.0.94"
chrono = "0.4.40"
toml = "0.8.20"
clap-markdown = "0.1.4"