-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 766 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
27
28
29
30
31
32
33
34
35
36
[package]
name = "developerStartSpringboot"
authors = ["erique.dev <contato@erique.dev>"]
version = "0.1.0"
edition = "2024"
license = "GPL-3.0"
description = "Spring Boot project generator CLI"
repository = "https://github.com/EriqueRocha/developerStartSpringboot"
[[bin]]
name = "dss"
path = "src/main.rs"
[profile.release]
strip = true
lto = true
codegen-units = 1
[dependencies]
regex = "1.11.3"
clap = { version = "4.5.48", features = ["derive"] }
rust-embed = "8"
[package.metadata.deb]
maintainer = "erique.dev <contato@erique.dev>"
section = "utils"
priority = "optional"
[package.metadata.rpm]
package = "developerStartSpringboot"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
dss = { path = "/usr/bin/dss" }