Skip to content
Open
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
2 changes: 1 addition & 1 deletion crates/satchel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "Test registration and discovery crate. Satchel uses linkme for te

[dependencies]
linkme = "0.3"
satchel-macro = "0.3.0"
satchel-macro = { path = "../satchel-macro" }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be possible to just use satchel-macro.workspace = true and then add the following to the workspace Cargo.toml:

[workspace.dependencies]
satchel-macro = { path = "crates/satchel-macro", version = "0.3.0" }

At least that is what we use in CXX-Qt and allows us to release without fuzz, but also keeps the dependencies in synch within the workspace.


[dev-dependencies]
trybuild = "1"
Expand Down