Skip to content

Commit

Permalink
Update Cargo.toml manifest version and docs.rs metadata
Browse files Browse the repository at this point in the history
- Use precise versions for dependencies. See:
  https://users.rust-lang.org/t/psa-please-specify-precise-dependency-versions-in-cargo-toml/71277
- Use the same style of docs.rs metadata as used in
  artichoke/raw-parts#24.
  • Loading branch information
lopopolo committed Feb 10, 2022
1 parent c6364e0 commit 5098275
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ cstr = []

[dev-dependencies]
# Property testing for interner getters and setters.
quickcheck = { version = "1.0", default-features = false }
quickcheck_macros = "1.0"
quickcheck = { version = "1.0.3", default-features = false }
quickcheck_macros = "1.0.0"

# Check that crate versions are properly updated in documentation and code when
# bumping the version.
Expand All @@ -41,5 +41,6 @@ features = ["markdown_deps_updated", "html_root_url_updated"]
[package.metadata.docs.rs]
# This sets the default target to `x86_64-unknown-linux-gnu` and only builds
# that target. `intaglio` has the same API and code on all targets.
targets = ["x86_64-unknown-linux-gnu"]
default-target = "x86_64-unknown-linux-gnu"
targets = []
rustdoc-args = ["--cfg", "docsrs"]

0 comments on commit 5098275

Please sign in to comment.