Skip to content

Commit

Permalink
fix: Reenable help output for json-schema-diff (#11)
Browse files Browse the repository at this point in the history
`--help` was broken the entire time.

Also disable features in schemars that we don't use.
  • Loading branch information
untitaker authored Apr 8, 2023
1 parent dd9a449 commit 908e6ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ path = "src/bin/main.rs"

[dependencies]
anyhow = { version = "1.0.70", optional = true }
clap = { version = "4.1.13", features = ["std", "derive"], default_features = false, optional = true }
schemars = "0.8.12"
clap = { version = "4.1.13", features = ["std", "derive", "usage", "help"], default_features = false, optional = true }
schemars = { version = "0.8.12", default_features = false }
serde = "1.0.158"
serde_json = "1.0.94"
thiserror = "1.0.40"
Expand Down

0 comments on commit 908e6ab

Please sign in to comment.