Skip to content

Commit

Permalink
Migrate to using information from cargo-metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo157 committed Feb 8, 2020
1 parent f21d58e commit fb3dce3
Show file tree
Hide file tree
Showing 13 changed files with 635 additions and 3,566 deletions.
1,296 changes: 133 additions & 1,163 deletions Cargo.lock

Large diffs are not rendered by default.

15 changes: 9 additions & 6 deletions Cargo.toml
Expand Up @@ -15,9 +15,12 @@ license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
cargo = "0.32"
clap = "2.20"
failure = "0.1.2"
regex = "1.0"
void = "1.0"
itertools = "0.8.1"
clap = { version = "2.33.0", default-features = false, features = ["color", "suggestions"] }
regex = { version = "1.3.4", default-features = false }
itertools = { version = "0.8.2", default-features = false, features = ["use_std"] }
cargo_metadata = { version = "0.9.1", default-features = false }
anyhow = { version = "1.0.26", default-features = false, features = ["std"] }
pretty_env_logger = { version = "0.4.0", default-features = false }
log = { version = "0.4.8", default-features = false }
toml = { version = "0.5.6", default-features = false }
serde = { version = "1.0.104", default-features = false, features = ["derive"] }

0 comments on commit fb3dce3

Please sign in to comment.