Skip to content
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

Multi file support + Dependency graph ordering #103

Merged
merged 4 commits into from
Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use once_cell::sync::Lazy;
#[derive(Debug, Parser)]
#[clap()]
pub struct Cli {
/// Input .cddl file to generate from.
#[clap(short, long, parse(from_os_str), value_name = "INPUT_FILE")]
/// Input .cddl file to generate from. If this is a directory then it will read all *.cddl files and generate one output for each.
#[clap(short, long, parse(from_os_str), value_name = "INPUT_FILE/INPUT_DIR")]
pub input: std::path::PathBuf,

/// Output directory for the generated code.
Expand Down
Loading