-
Notifications
You must be signed in to change notification settings - Fork 4
chore: pin saorsa-core and saorsa-transport to always-masque-relay branches #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
197c31d
eda757f
5ba564a
5d25e1f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ path = "src/bin/ant-devnet/main.rs" | |
|
|
||
| [dependencies] | ||
| # Core (provides EVERYTHING: networking, DHT, security, trust, storage) | ||
| saorsa-core = "0.23.1" | ||
| saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core.git", branch = "mick/always-masque-relay-rebased" } | ||
| saorsa-pqc = "0.5" | ||
|
Comment on lines
25
to
28
|
||
|
|
||
| # Payment verification - autonomi network lookup + EVM payment | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using a moving git
branchforsaorsa-coremeans dependency resolution can change whenever the branch tip changes (e.g., when regeneratingCargo.lockor building in environments that don't respect the existing lockfile). If you want deterministic builds, prefer pinning to a specificrev(and optionally keep the branch name in a comment) and/or include aversion = "..."constraint so Cargo can verify the expected crate version.