Live video on the AT Protocol

rust: whoops, actual `make dev` fix i had in mind

+4 -7
+4 -7
Makefile
··· 78 78 .PHONY: dev-rust 79 79 dev-rust: 80 80 cargo build 81 - $(MAKE) iroh-streamplace-codegen 81 + EXT=so; \ 82 + if [ "$(BUILDOS)" = "darwin" ]; then EXT=dylib; fi; \ 83 + uniffi-bindgen-go --out-dir pkg/iroh/generated --library ./target/debug/libiroh_streamplace.$$EXT \ 84 + && cp ./target/debug/libiroh_streamplace.$$EXT build-darwin-arm64/rust/iroh-streamplace/libiroh_streamplace.$$EXT 82 85 83 86 .PHONY: dev 84 87 dev: ··· 844 847 && git add . \ 845 848 && git commit -m "Update streamplace $(VERSION)" \ 846 849 && git push 847 - 848 - .PHONY: iroh-streamplace-codegen 849 - iroh-streamplace-codegen: 850 - EXT=so; \ 851 - if [ "$(BUILDOS)" = "darwin" ]; then EXT=dylib; fi; \ 852 - uniffi-bindgen-go --out-dir pkg/iroh/generated --library ./target/debug/libiroh_streamplace.$$EXT