Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rrbutani committed May 12, 2021
1 parent dec255f commit 4982a2f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# had a 0.1.0 release and a 0.2.0 release, users of the 0.1.0 release
# would have their links to types in our crate be prefixed with
# `docs.rs/crate-name/*` which will send them to the 0.2.0 docs.
grep -q "html_root_url = \"https://docs.rs/.*/${T_VER}\"" src/lib.rs || exit 4
grep -q "html_root_url = \"https://docs.rs/.*/${T_VER}\"" src/main.rs || exit 4
# Now extract the body of the changelog entry:
git fetch --tags
Expand Down
11 changes: 5 additions & 6 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ is-it-maintained-open-issues = { repository = "rrbutani/bazel-execlog-cmp" }
maintenance = { status = "actively-developed" }

[dependencies]
serde = { version = "*", features = ["derive"] }
serde-aux = "*"
serde_json = "*"
color-eyre = "*"
hex-serde = "*"
indicatif = { version = "*", features = ["rayon"] }
rayon = "*"
rustyline = "*"
prettydiff = "*"
fuzzy-matcher = "*"
serde = { version = "1.0", features = ["derive"] }
serde-aux = "2.2"
serde_json = "1.0"
color-eyre = "0.5"
hex-serde = "0.1"
indicatif = { version = "0.16", features = ["rayon"] }
rayon = "1.5"
rustyline = "8.0"
prettydiff = "0.4"
fuzzy-matcher = "0.3"

[features]
default = []
Expand Down

0 comments on commit 4982a2f

Please sign in to comment.