Skip to content
Merged
Changes from all 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
8 changes: 8 additions & 0 deletions hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ homepage = { workspace = true }
license = { workspace = true }
edition = { workspace = true }

[package.metadata.cargo-semver-checks.lints]
# cargo-semver-checks performs checks on the exported symbol graph, so re-exports
# are considered different elements and they will be flagged as breaking changes
# even if the public API is equivalent.
enum_missing = "allow"
pub_module_level_const_missing = "allow"
struct_missing = "allow"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
all-features = true
Expand Down