Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 89 additions & 70 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ categories = [
]

[dependencies]
regex = "1.10.5"
clap = "4.5.9"
phf = { version = "0.11.2", features = ["macros"] }
regex = "1.11.1"
clap = "4.5.41"
phf = { version = "0.12.1", features = ["macros"] }

[build-dependencies]
clap = "4.5.9"
Expand Down
10 changes: 5 additions & 5 deletions completion/_prefix
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ _prefix() {
_arguments "${_arguments_options[@]}" : \
'-c+[Adds colour to the delimiter and = in for FIX fields, auto will colour only when printing directly into a tty]:when:(always auto never)' \
'--color=[Adds colour to the delimiter and = in for FIX fields, auto will colour only when printing directly into a tty]:when:(always auto never)' \
'-d+[Set delimiter string to print after each FIX field]:delimiter: ' \
'--delimiter=[Set delimiter string to print after each FIX field]:delimiter: ' \
'-S+[Summarise each fix message based on an optional template]' \
'--summary=[Summarise each fix message based on an optional template]' \
'-d+[Set delimiter string to print after each FIX field]:delimiter:_default' \
'--delimiter=[Set delimiter string to print after each FIX field]:delimiter:_default' \
'-S+[Summarise each fix message based on a template, if summary is provided with no template then it uses '\''35'\'']' \
'--summary=[Summarise each fix message based on a template, if summary is provided with no template then it uses '\''35'\'']' \
'-o[Only print FIX messages]' \
'--only-fix[Only print FIX messages]' \
'--porcelain[print FIX messages closer to standard format, same as --delimiter \\x01 --strip]' \
Expand All @@ -38,7 +38,7 @@ _prefix() {
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'*::message -- FIX message to be parsed, if not provided will look for a message piped through stdin:' \
'*::message -- FIX message to be parsed, if not provided will look for a message piped through stdin:_default' \
&& ret=0
}

Expand Down
Loading