2023-05-18 18:32:23 +00:00
|
|
|
[package]
|
|
|
|
name = "fastdoc"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.71"
|
|
|
|
async-walkdir = "0.2.0"
|
|
|
|
clap = { version = "4.2.7", features = ["derive"] }
|
|
|
|
console = "0.15.6"
|
|
|
|
futures = "0.3.28"
|
|
|
|
indicatif = { version = "0.17.3", features = ["tokio", "improved_unicode", "vt100"] }
|
2023-05-18 18:54:00 +00:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
regex = "1.8.1"
|
2023-05-18 18:32:23 +00:00
|
|
|
swc_common = { version = "0.31.10", features = ["tty-emitter"] }
|
2023-05-18 18:54:00 +00:00
|
|
|
swc_ecma_ast = "0.104.3"
|
2023-05-18 18:32:23 +00:00
|
|
|
swc_ecma_parser = "0.134.6"
|
|
|
|
tokio = { version = "1.28.1", features = ["full"] }
|