[workspace] [package] name = "loco-cli" version = "0.12.0" edition = "2021" description = "loco cli website generator" license = "Apache-2.0" homepage = "https://docs.rs/loco-cli" documentation = "https://docs.rs/loco-cli" authors = ["Dotan Nahum ", "Elad Kaplan "] [profile.release] strip = true [lib] name = "loco_cli" path = "src/lib.rs" [[bin]] name = "loco" path = "src/bin/main.rs" required-features = [] [features] default = [] git2 = ["dep:git2"] [dependencies] thiserror = "1.0.63" clap = { version = "4.4.7", features = ["derive"] } serde = { version = "1", features = ["derive"] } serde_yaml = "0.9.27" serde_regex = "1.1.0" eyre = { version = "0.6.9" } rand = { version = "0.8.5" } dialoguer = "0.11.0" regex = { version = "1.10.2" } ignore = "0.4.21" fs_extra = "1.3.0" tracing = "0.1.40" fs-err = "2.11.0" tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } git2 = { version = "0.18.1", optional = true } cfg-if = "1.0.0" dunce = { version = "1.0.4" } strum = { version = "0.26", features = ["derive"] } colored = "2" unicode-xid = "0.2.6" [dev-dependencies] trycmd = "0.14.19" tree-fs = "0.1.0" insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] }