Skip to content

Commit

Permalink
use guppy to slurp workspace structure
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Mar 28, 2024
1 parent e9edbe9 commit c78f975
Show file tree
Hide file tree
Showing 6 changed files with 255 additions and 7 deletions.
193 changes: 193 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions crux_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ path = "src/main.rs"
anyhow.workspace = true
clap = { version = "4.3.24", features = ["derive"] }
console = "0.15.8"
guppy = "0.17.5"
ignore = "0.4.22"
libc = "0.2.153"
ramhorns = "0.14.0"
rustdoc-types = "0.24.0"
serde = { workspace = true, features = ["derive"] }
serde_json = "1.0.114"
similar = { version = "2.4.0", features = ["inline"] }
tokio = { version = "1.36.0", features = ["full"] }
tokio-fd = "0.3.0"
Expand Down
4 changes: 2 additions & 2 deletions crux_cli/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ pub(crate) struct DoctorArgs {

#[derive(Args)]
pub(crate) struct CodegenArgs {
/// path to the directory containing the Cargo.toml manifest
/// name of the library containing your Crux App
#[arg(long, short)]
pub path: PathBuf,
pub lib: String,
}

#[cfg(test)]
Expand Down
Loading

0 comments on commit c78f975

Please sign in to comment.