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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ rust-version = "1.85.0"

[workspace.dependencies]
# Workspace dependencies
exn = { path = "exn" }
exn-anyhow = { path = "exn-anyhow" }
exn = { version = "0.3.0", path = "exn" }
exn-anyhow = { version = "0.1.0", path = "exn-anyhow" }
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

@tisonkun Will it be better if we align the version of this two crates?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

It depends on our breaking change expectation.

I think we typically avoid breaking change in exn so use a separate version would be fine. The exn-anyhow is a thin wrapper over exn and only depends on exn's almost stable API.

So we'd only release exn-anyhow 0.2 when exn 0.4 is out. This should be similar to our strategy to fastrace and fastrace-reqwest.


# Crates.io dependencies
anyhow = { version = "1.0.100" }
Expand Down