[package] name = "publisher" version = "0.1.9" authors = ["Pavan Kumar Sunkara "] description = "Tool to publish & distribute CLI tools" homepage = "https://github.com/termapps/publisher" repository = "https://github.com/termapps/publisher" edition = "2021" rust-version = "1.75.0" categories = ["command-line-utilities"] license = "MIT" readme = "README.md" [dependencies] anstream = "0.6.4" clap = { version = "4.4.7", features = ["derive", "wrap_help"] } clap-verbosity-flag = "2.1.0" colorchoice-clap = "1.0.3" owo-colors = "3.5.0" proc-exit = "2.0.1" thiserror = "1.0.39" tracing = "0.1.37" tracing-log = { version = "0.1.3", default-features = false, features = ["log-tracer", "std"] } tracing-subscriber = "0.3.16" config = { version = "0.13.3", default-features = false, features = ["toml"] } heck = "0.4.1" inquire = "0.7.5" regex = "1.10.5" serde = { version = "1.0.153", features = ["derive"] } serde_json = "1.0.120" toml = "0.8.15" xshell = "0.2.3" [[bin]] name = "publisher" path = "src/main.rs" [profile.release] codegen-units = 1 lto = "thin" strip = true [profile.release-opt-size] inherits = "release" lto = true opt-level = "z" panic = "abort" [workspace.metadata.workspaces] no_individual_tags = true