6595bd5148
This allows committing with the users set editor, which is very handy if you don't want to actually make meaningful commits. This existed before, but implementing the instruction architecture for composite actions broke it, because the status code refactor used output() instead of status(). Thankfully, this does support exit codes still, but it does create some cluttered output which is not terrible great UX, but this is not extremely important, as this associated function isn't even currently used by any user facing commands (except its explicit subcommand). :D Signed-off-by: Christina Sørensen <christina@cafkafk.com>
34 lines
776 B
TOML
34 lines
776 B
TOML
[package]
|
|
name = "gg"
|
|
version = "0.0.6"
|
|
edition = "2021"
|
|
authors = ["Christina Sørensen <christina@cafkafk.com>"]
|
|
repository = "https://github.com/cafkafk/gg"
|
|
license = "GPL-3.0-only"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4.0.22", features = ["derive"] }
|
|
log = "0.4"
|
|
pretty_env_logger = "0.5.0"
|
|
relative-path = "1.8.0"
|
|
spinners = "4.1.0"
|
|
|
|
[build-dependencies]
|
|
clap = { version = "4.3.2", features = ["derive", "cargo", "env", "help"] }
|
|
clap_mangen = "0.2.4"
|
|
|
|
[profile.dev]
|
|
strip = false
|
|
#opt-level = 3
|
|
#lto = true
|
|
#codegen-units = 1
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = "fat"
|
|
opt-level = 3
|
|
codegen-units = 1
|