[package] name = "jj-cz" version = "1.0.0-dev" edition = "2024" publish = true authors = ["Lucien Cartier-Tilet "] license = "MIT OR GPL-3.0-or-later" homepage = "https://labs.phundrak.com/phundrak/jj-cz" repository = "https://labs.phundrak.com/phundrak/jj-cz" [lib] path = "src/lib.rs" [[bin]] path = "src/main.rs" name = "jj-cz" [features] ## Exposes MockJjExecutor and MockPrompts for use in integration tests. ## Enable with: cargo test --features test-utils test-utils = [] [dependencies] async-trait = "0.1.89" etcetera = "0.11.0" clap = { version = "4.5.57", features = ["derive"] } git-conventional = "0.12.9" inquire = { version = "0.9.2", features = ["editor"] } jj-lib = "0.39.0" lazy-regex = { version = "3.5.1", features = ["lite"] } thiserror = "2.0.18" tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] } textwrap = "0.16.2" unicode-width = "0.2.2" [dev-dependencies] assert_cmd = "2.1.2" assert_fs = "1.1.3" predicates = "3.1.3" [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] } [profile.release] opt-level = "z" lto = true codegen-units = 1 panic = "abort" strip = true [package.metadata.git-cliff.changelog] body = """ {% if version %}\ ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} {% else %}\ ## [unreleased] {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %} ### {{ group | striptags | trim | upper_first }} {% for commit in commits %} - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ {{ commit.message | upper_first }}\ {% endfor %} {% endfor %} """ trim = true render_always = true postprocessors = [ { pattern = '', replace = "https://labs.phundrak.com/phundrak/jj-cz" }, ] [package.metadata.git-cliff.bump] features_always_bump_minor = true breaking_always_bump_major = true initial_tag = "0.1.0" [package.metadata.git-cliff.git] conventional_commits = true filter_unconventional = true require_conventional = false split_commits = false commit_preprocessors = [ { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](/issues/${2}))"}, { pattern = '.*', replace_command = 'typos --write-changes -' }, ] protect_breaking_commits = false commit_parsers = [ { message = "^feat", group = "Features" }, { message = "^fix", group = "Bug Fixes" }, { message = "^doc", group = "Documentation" }, { message = "^perf", group = "Performance" }, { message = "^refactor", group = "Refactor" }, { message = "^style", group = "Styling" }, { message = "^test", group = "Testing" }, { message = "^chore\\(release\\):", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, { message = "^chore|^ci", group = "Miscellaneous Tasks" }, { body = ".*security", group = "Security" }, { message = "^revert", group = "Revert" }, { message = ".*", group = "Other" }, ] filter_commits = false fail_on_unmatched_commit = false link_parsers = [] use_branch_tags = false topo_order = false topo_order_commits = true sort_commits = "oldest" recurse_submodules = false