Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ payjoin = { path = "../payjoin", default-features = false, features = [
"v2",
] }

# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["home"]

Expand Down
1 change: 1 addition & 0 deletions payjoin-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ tokio-rustls = { version = "0.26.4", features = [
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }

# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["ahash", "pest_derive"]

Expand Down
5 changes: 1 addition & 4 deletions payjoin-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ uniffi-bindgen-cs = { git = "https://github.com/benalleng/uniffi-bindgen-cs.git"
uniffi-dart = { git = "https://github.com/benalleng/uniffi-dart.git", rev = "ce97870a934cd6046eef059c5805359ac0d59964", optional = true }
url = "2.5.4"

# getrandom is ignored here because it's required by the wasm_js feature
# icu deps are ignored here because they're required to be pinned as transitive deps of url
# socks is ignored as a transitive dep of bdk
# Even though they may appear unused in the default feature set, they are legitimate dependencies.
# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["getrandom", "icu_provider", "icu_locale_core", "socks"]

Expand Down
3 changes: 1 addition & 2 deletions payjoin-ffi/javascript/test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ tokio = { version = "1.52.3", features = ["full"] }
icu_locale_core = "=2.0.1"
icu_provider = "=2.0.0"

# icu deps are ignored here because they're required to be pinned as transitive deps of url
# Even though they may appear unused in the default feature set, they are legitimate dependencies.
# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["icu_provider", "icu_locale_core"]

Expand Down
3 changes: 1 addition & 2 deletions payjoin-mailroom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
unicode-segmentation = "=1.12.0"

# unicode segmentation is ignored because it needs to be pinned due to the use of an unstable
# feature from within the config crate
# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["unicode-segmentation"]

Expand Down
2 changes: 1 addition & 1 deletion payjoin-test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ tokio = { version = "1.52.3", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }

# time and tar are transient dependencies, but needs to be specified explicitly to pin the version for MSRV
# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["time", "tar"]
2 changes: 1 addition & 1 deletion payjoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tracing = "0.1.41"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-time = "1.1.0"

# bitcoin-units and hkdf are transient dependencies that need to be specified for our MSRV
# Pinned transitive dependencies that appear unused to cargo-machete
[package.metadata.cargo-machete]
ignored = ["bitcoin-units", "hkdf"]

Expand Down
Loading