-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speed up incremental build #1682
base: main
Are you sure you want to change the base?
Changes from 13 commits
882a88b
15f8e10
6bda1ad
6399fec
0caf013
bd87dc6
9748451
6b18afc
dc923c5
7693224
9604a44
4c81c6a
19c59c6
57a4507
9d5253c
ba18db8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm all for improving compilation speed but seems like this comes at the cost of reordering our CLI logic in a somewhat confusing manner, I'm not sure if args should belong outside of the cli. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[package] | ||
categories = ["cryptography"] | ||
description = "MozakVM cli" | ||
edition = "2021" | ||
keywords = ["crypto", "zero-knowledge", "vm"] | ||
license = "All rights reserved" | ||
name = "mozak-cli-args" | ||
readme = "README.md" | ||
repository = "https://github.com/0xmozak/mozak-vm" | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
clap = { version = "4.5", features = [ | ||
"derive", | ||
"cargo", | ||
"env", | ||
"unicode", | ||
] } | ||
# TODO(Matthias): implement shell completion for CLI via clap_complete | ||
# clap_complete = "4.3" | ||
clap-verbosity-flag = "2.2" | ||
clap_derive = "4.5" | ||
clio = { version = "0.3", features = ["clap-parse"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change can go into its own PR.