golang-github-arceliar-phony 0.0~git20220903.530938a-1 source package in Ubuntu

Changelog

golang-github-arceliar-phony (0.0~git20220903.530938a-1) unstable; urgency=medium

  * New upstream release

 -- John Goerzen <email address hidden>  Tue, 31 Oct 2023 20:03:47 -0500

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-arceliar-phony_0.0~git20220903.530938a-1.dsc 2.3 KiB dcdceec7a022699214cc035c0fea0d58c6e54fcc1095cb92e6cb4bcf50557e36
golang-github-arceliar-phony_0.0~git20220903.530938a.orig.tar.xz 10.2 KiB 41aa0e4392e50992df73674a7d2d6c22f3cc34ec013b6d56eec90a618f8820cb
golang-github-arceliar-phony_0.0~git20220903.530938a-1.debian.tar.xz 2.2 KiB 51f8d32faa9a6de51abfd9e19f854b2a2e01bbc5d12a0964af4b84f918b27bca

No changes file available.

Binary packages built by this source

golang-github-arceliar-phony-dev: Ponylang-inspired actor model library for Go (library)

 Phony is a Pony-inspired proof-of-concept
 implementation of shared-memory actor-model concurrency in the Go
 programming language. Actors automatically manage goroutines and use
 asynchronous causal messaging (with backpressure) for communcation. This
 makes it easy to write programs that are free from deadlocks, goroutine
 leaks, and many of the for loops over select statements that show up in
 boilerplate code. The down side is that the code needs to be written in
 an asynchronous style, which is not idiomatic to Go, so it can take some
 getting used to.