[package]
edition = "2024"
name = "xspring"
version = "0.1.2"
authors = ["Shahul Malik <mohdshahulmalik@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tool to scaffold spring boot projects interactively like the vs code extension for scaffolding a spring boot project"
homepage = "https://github.com/MohdShahulMalik/xspring"
readme = "README.md"
keywords = [
"cli",
"spring",
"spring-boot",
"generator",
"interactive",
]
categories = [
"command-line-utilities",
"development-tools::build-utils",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MohdShahulMalik/xspring"
[package.metadata.wix]
upgrade-guid = "D6A021FD-D2A8-463C-9A1D-2A880FBC5ABE"
path-guid = "D89B20E6-3BE9-44CA-92BA-49365A1081B7"
license = false
eula = false
[lib]
name = "xspring"
path = "src/lib.rs"
[[bin]]
name = "xspring"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.99"
[dependencies.clap]
version = "4.5.47"
[dependencies.clap-verbosity-flag]
version = "3.0.4"
features = ["tracing"]
default-features = false
[dependencies.inquire]
version = "0.7.5"
[dependencies.reqwest]
version = "0.12.23"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt",
]
[dependencies.tracing]
version = "0.1.41"
features = ["log"]
[dependencies.tracing-appender]
version = "0.2.3"
[dependencies.tracing-subscriber]
version = "0.3.18"
[dependencies.zip]
version = "5.0.1"
[profile.dist]
lto = "thin"
inherits = "release"