Another project
0

Configure Feed

Select the types of activity you want to include in your feed.

dependency bumps, deny config & justfile

Lewis: May this revision serve well! <lu5a@proton.me>

author
Lewis
date (Jul 4, 2026, 3:56 PM +0300) commit 0e173ade parent 9ce91464 change-id qxxnrmsw
+17 -2
+1
Cargo.lock
··· 480 480 "bone-types", 481 481 "insta", 482 482 "proptest", 483 + "robust", 483 484 "ron", 484 485 "serde", 485 486 "slotmap",
+1
Cargo.toml
··· 57 57 png = { version = "0.17", default-features = false } 58 58 pollster = "0.4" 59 59 proptest = { version = "1", default-features = false, features = ["std"] } 60 + robust = "1" 60 61 ron = "0.12" 61 62 serde = { version = "1", default-features = false, features = ["std", "derive", "rc"] } 62 63 serde_json = "1"
+7
deny.toml
··· 14 14 "CC0-1.0", 15 15 "Unlicense", 16 16 ] 17 + 18 + [bans] 19 + deny = [ 20 + { name = "lzma-sys" }, 21 + { name = "xz2" }, 22 + { name = "vtkio" }, 23 + ]
+8 -2
justfile
··· 34 34 fmt-check: 35 35 cargo fmt --all -- --check 36 36 37 - lint: fmt-check clippy 37 + lint: fmt-check clippy forbidden-deps 38 38 39 39 license: 40 - cargo deny check licenses 40 + cargo deny check licenses bans 41 + 42 + forbidden-deps: 43 + @if cargo tree -i lzma-sys >/dev/null 2>&1; then echo "forbidden FFI dependency in tree: lzma-sys" >&2; exit 1; fi 44 + @if cargo tree -i xz2 >/dev/null 2>&1; then echo "forbidden FFI dependency in tree: xz2" >&2; exit 1; fi 45 + @if cargo tree -i vtkio >/dev/null 2>&1; then echo "forbidden FFI dependency in tree: vtkio" >&2; exit 1; fi 46 + @echo "no forbidden FFI dependencies in the tree" 41 47 42 48 prove-determinism: 43 49 @find crates -name '*.snap.new' -delete