Skip to content

Commit fb4a89e

Browse files
committed
Merge branch 'main' into b5/collection_fetch_example
2 parents 18c972b + 0a5124a commit fb4a89e

File tree

29 files changed

+1635
-877
lines changed

29 files changed

+1635
-877
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
publish_branch: generated-docs-preview
5151

5252
- name: Find Docs Comment
53-
uses: peter-evans/find-comment@v3
53+
uses: peter-evans/find-comment@v4
5454
id: fc
5555
with:
5656
issue-number: ${{ github.event.pull_request.number || inputs.pr_number }}
@@ -62,7 +62,7 @@ jobs:
6262
run: echo "TIMESTAMP=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV
6363

6464
- name: Create or Update Docs Comment
65-
uses: peter-evans/create-or-update-comment@v4
65+
uses: peter-evans/create-or-update-comment@v5
6666
with:
6767
issue-number: ${{ github.event.pull_request.number || inputs.pr_number }}
6868
comment-id: ${{ steps.fc.outputs.comment-id }}

Cargo.lock

Lines changed: 66 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,15 @@ tracing-test = "0.2.5"
6060
walkdir = "2.5.0"
6161
atomic_refcell = "0.1.13"
6262
iroh = { version = "0.92", features = ["discovery-local-network"]}
63+
async-compression = { version = "0.4.30", features = ["lz4", "tokio"] }
64+
concat_const = "0.2.0"
6365

6466
[features]
6567
hide-proto-docs = []
6668
metrics = []
6769
default = ["hide-proto-docs", "fs-store"]
6870
fs-store = ["dep:redb", "dep:reflink-copy"]
71+
72+
[patch.crates-io]
73+
iroh = { git = "https://github.com/n0-computer/iroh", branch = "main" }
74+
iroh-base = { git = "https://github.com/n0-computer/iroh", branch = "main" }

deny.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,8 @@ name = "ring"
3939
[[licenses.clarify.license-files]]
4040
hash = 3171872035
4141
path = "LICENSE"
42+
43+
[sources]
44+
allow-git = [
45+
"https://github.com/n0-computer/iroh",
46+
]

0 commit comments

Comments
 (0)