-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli: refactor cli parsing and use clap, add subcommands
- Loading branch information
1 parent
793f537
commit eeaf23d
Showing
8 changed files
with
297 additions
and
158 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,11 @@ members = [ | |
name = "caesar" | ||
version = "2.0.8" | ||
authors = ["Philipp Schroer <[email protected]>"] | ||
description = "Caesar is a deductive verifier for probabilistic programs." | ||
homepage = "https://www.caesarverifier.org/" | ||
repository = "https://github.com/moves-rwth/caesar" | ||
license = "MIT" | ||
keywords = ["verification", "probabilistic programming"] | ||
edition = "2021" | ||
build = "build.rs" # LALRPOP preprocessing | ||
|
||
|
@@ -52,7 +57,8 @@ itertools = "0.13.0" | |
stacker = "0.1.15" | ||
crossbeam-channel = "0.5.14" | ||
shlex = "1.3.0" | ||
clap = { version = "4.5.23", features = ["derive", "string"] } | ||
clap = { version = "4.5.23", features = ["derive", "string", "cargo"] } | ||
clap_complete = "4.5.42" | ||
|
||
[build-dependencies] | ||
lalrpop = "0.22" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.