Skip to content

Commit 9a0182a

Browse files
authored
Merge branch 'main' into encoding
2 parents 2f5e9a6 + 84cc1b4 commit 9a0182a

File tree

981 files changed

+43636
-10943
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

981 files changed

+43636
-10943
lines changed

.cargo/audit.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ ignore = [
3131
# borsh
3232
# Parsing borsh messages with ZST which are not-copy/clone is unsound
3333
"RUSTSEC-2023-0033",
34+
# yaml-rust is unmaintained.
35+
"RUSTSEC-2024-0320",
3436
# Degradation of service in h2 servers with CONTINUATION Flood(Wait for tonic to fix)
35-
"RUSTSEC-2024-0332"
37+
"RUSTSEC-2024-0332",
38+
# `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input
39+
"RUSTSEC-2024-0336"
3640
]

.github/actions/test_unit/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ runs:
1515
env:
1616
RUST_TEST_THREADS: "8"
1717
RUST_LOG: ERROR
18+
RUST_MIN_STACK: 104857600
1819
# RUST_BACKTRACE: full
1920

2021
- name: Upload failure

.github/workflows/bindings.python.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: inputs.tag
3939
uses: actions/upload-artifact@v4
4040
with:
41-
name: python
41+
name: python-linux-${{ matrix.arch }}
4242
path: src/bendpy/dist/*.whl
4343

4444
macos:
@@ -60,7 +60,7 @@ jobs:
6060
if: inputs.tag
6161
uses: actions/upload-artifact@v4
6262
with:
63-
name: python
63+
name: python-macos-${{ matrix.arch }}
6464
path: src/bendpy/dist/*.whl
6565

6666
publish:
@@ -72,7 +72,8 @@ jobs:
7272
- uses: actions/checkout@v4
7373
- uses: actions/download-artifact@v4
7474
with:
75-
name: python
75+
pattern: python-*
76+
merge-multiple: true
7677
path: src/bendpy/dist
7778
- name: Publish to PyPI
7879
timeout-minutes: 10

.typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ extend-exclude = [
2121
"src/meta",
2222
"src/query",
2323
"src/binaries",
24+
# Forked from upstream
25+
"src/common/parquet2"
2426
]

0 commit comments

Comments
 (0)