File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,15 @@ jobs:
244244 args : --out dist
245245 rust-toolchain : stable
246246 working-directory : crates/jiter-python
247+ - name : verify sdist lockfile for locked vendoring
248+ run : |
249+ set -euxo pipefail
250+ sdist_path=$(echo crates/jiter-python/dist/*.tar.gz)
251+ sdist_name=$(basename "$sdist_path" .tar.gz)
252+ mkdir sdist-check
253+ tar -xzf "$sdist_path" -C sdist-check
254+ cd "sdist-check/$sdist_name"
255+ cargo vendor --locked > /dev/null
247256 - uses : actions/upload-artifact@v4
248257 with :
249258 name : pypi_files_sdist
Original file line number Diff line number Diff line change 11[workspace ]
2- members = [" crates/jiter" , " crates/jiter-python" , " crates/fuzz" ]
2+ members = [" crates/jiter" , " crates/jiter-python" ]
3+ exclude = [" crates/fuzz" ]
34resolver = " 2"
45
56[workspace .package ]
Original file line number Diff line number Diff line change 11[package ]
22name = " fuzz"
33publish = false
4- version = {workspace = true }
5- edition = {workspace = true }
6- authors = {workspace = true }
4+ # Internal-only crate (`publish = false`): keep version decoupled from release crates.
5+ version = " 0.0.0"
6+ edition = " 2021"
7+ authors = [" Samuel Colvin <samuel@pydantic.dev>" ]
78
89[package .metadata ]
910cargo-fuzz = true
You can’t perform that action at this time.
0 commit comments